Remove global symbols: Avoid using the global namespace if possible

Rename CCriticalSection to RecursiveMutex (both are AnnotatedMixin<std::recursive_mutex>)

```
$ git grep -E '(typedef|using).*(CCriticalSection|RecursiveMutex)'
src/sync.h:using RecursiveMutex = AnnotatedMixin<std::recursive_mutex>;
src/sync.h:typedef AnnotatedMixin<std::recursive_mutex> CCriticalSection;
```
This commit is contained in:
practicalswift
2019-05-24 15:18:42 +02:00
parent 63b9efa73d
commit fb434159d1
3 changed files with 9 additions and 9 deletions

View File

@@ -74,7 +74,7 @@
#include <zmq/zmqrpc.h>
#endif
bool fFeeEstimatesInitialized = false;
static bool fFeeEstimatesInitialized = false;
static const bool DEFAULT_PROXYRANDOMIZE = true;
static const bool DEFAULT_REST_ENABLE = false;
static const bool DEFAULT_STOPAFTERBLOCKIMPORT = false;