31 lines
996 B
C
31 lines
996 B
C
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
||
|
|
//*************************************************************************
|
||
|
|
// DESCRIPTION: Verilator: Backports of features from future C++ versions
|
||
|
|
//
|
||
|
|
// Code available from: https://verilator.org
|
||
|
|
//
|
||
|
|
//*************************************************************************
|
||
|
|
//
|
||
|
|
// Copyright 2003-2022 by Wilson Snyder. This program is free software; you
|
||
|
|
// can redistribute it and/or modify it under the terms of either the GNU
|
||
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
||
|
|
// Version 2.0.
|
||
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
||
|
|
//
|
||
|
|
//*************************************************************************
|
||
|
|
|
||
|
|
#ifndef VERILATOR_V3STDFUTURE_H_
|
||
|
|
#define VERILATOR_V3STDFUTURE_H_
|
||
|
|
|
||
|
|
namespace vlstd {
|
||
|
|
|
||
|
|
// constexpr std::max with arguments passed by value (required by constexpr before C++14)
|
||
|
|
template <class T>
|
||
|
|
constexpr T max(T a, T b) {
|
||
|
|
return a > b ? a : b;
|
||
|
|
}
|
||
|
|
|
||
|
|
}; // namespace vlstd
|
||
|
|
|
||
|
|
#endif // Guard
|