Fix clang 15 warnings: (#4325)

Clang warned about the code removed in this patch with the warning:
```
warning: out-of-line definition of constexpr static data member is
redundant in C++17 and is deprecated [-Wdeprecated]
```
This commit is contained in:
Scott Determan
2022-12-13 19:21:22 -05:00
committed by GitHub
parent 47ffc392d7
commit 648d6c3e2f
4 changed files with 0 additions and 11 deletions

View File

@@ -263,8 +263,6 @@ getEnvVar(char const* name)
return value;
}
constexpr FeeUnit32 Config::TRANSACTION_FEE_BASE;
Config::Config()
: j_(beast::Journal::getNullSink()), ramSize_(detail::getMemorySize())
{