Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Josh Wilcox
crown-core
Commits
f394b914
Commit
f394b914
authored
7 years ago
by
Ashot
Browse files
Options
Download
Email Patches
Plain Diff
Moved using namespace from header file to cpp
parent
b4aba959
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/rpcupdate.cpp
+1
-0
src/rpcupdate.cpp
src/rpcupdate.h
+1
-3
src/rpcupdate.h
with
2 additions
and
3 deletions
+2
-3
src/rpcupdate.cpp
View file @
f394b914
...
...
@@ -13,6 +13,7 @@
using
namespace
json_spirit
;
using
namespace
std
;
using
namespace
boost
::
filesystem
;
bool
RPCUpdate
::
started
=
false
;
Object
RPCUpdate
::
statusObj
;
...
...
This diff is collapsed.
Click to expand it.
src/rpcupdate.h
View file @
f394b914
...
...
@@ -10,8 +10,6 @@
#include "json/json_spirit_value.h"
#include <boost/filesystem.hpp>
using
namespace
boost
::
filesystem
;
class
RPCUpdate
{
public:
...
...
@@ -28,7 +26,7 @@ private:
private:
static
Object
statusObj
;
static
bool
started
;
path
tempDir
;
boost
::
filesystem
::
path
tempDir
;
};
#endif // RPC_UPDATE_H
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help