mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-20 13:37:28 +02:00
Don't make "in" parameters look like "out"/"in-out" parameters: pass by ref to const instead of ref to non-const
This commit is contained in:
parent
f35e4d906f
commit
12dcdaaa54
12 changed files with 16 additions and 16 deletions
|
|
@ -914,7 +914,7 @@ std::set<BlockFilterType> g_enabled_filter_types;
|
|||
std::terminate();
|
||||
};
|
||||
|
||||
bool AppInitBasicSetup(ArgsManager& args)
|
||||
bool AppInitBasicSetup(const ArgsManager& args)
|
||||
{
|
||||
// ********************************************************* Step 1: setup
|
||||
#ifdef _MSC_VER
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue