diff options
author | Jeffrey Ryan <jeffreyryan@tutanota.com> | 2022-05-22 23:41:41 -0500 |
---|---|---|
committer | Jeffrey Ryan <jeffreyryan@tutanota.com> | 2022-05-23 14:46:36 -0500 |
commit | a4cb77f9f3e3b37e5f9a87cee53392c8114a1b37 (patch) | |
tree | b82a2622fbd2c6895041e7dcec909ae517882802 /src/rpc | |
parent | Merge pull request #8349 (diff) | |
download | monero-a4cb77f9f3e3b37e5f9a87cee53392c8114a1b37.tar.xz |
epee: update 'http_server_handlers_map2.h' macros to use fully qualified names
quick patch which fixes the issue where if you use some macros from `http_server_handlers_map2.h` you have to be in the `epee` namespace or it doesn't compile. Now can remove `using namespace epee;` from header file `core_rpc_server.h`, which caused a couple of name qualifying mistakes
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/core_rpc_server.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/rpc/core_rpc_server.h b/src/rpc/core_rpc_server.h index 0274f4db8..b87412ca6 100644 --- a/src/rpc/core_rpc_server.h +++ b/src/rpc/core_rpc_server.h @@ -47,10 +47,6 @@ #undef MONERO_DEFAULT_LOG_CATEGORY #define MONERO_DEFAULT_LOG_CATEGORY "daemon.rpc" -// yes, epee doesn't properly use its full namespace when calling its -// functions from macros. *sigh* -using namespace epee; - namespace cryptonote { /************************************************************************/ |