diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-03-02 09:42:12 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-04-03 12:33:14 +0200 |
| commit | f110272dc90cd870bfff48c9a61e091e67dbb2e9 (patch) | |
| tree | 2c385efd61a2888c83cb0e0730a35913f6a707af /src/qt/guiutil.cpp | |
| parent | torcontrol: Use fs::path instead of std::string for private key path (diff) | |
| download | discoin-f110272dc90cd870bfff48c9a61e091e67dbb2e9.tar.xz discoin-f110272dc90cd870bfff48c9a61e091e67dbb2e9.zip | |
Remove `namespace fs=fs`
Having these inside functions is silly and redundant now.
Diffstat (limited to 'src/qt/guiutil.cpp')
| -rw-r--r-- | src/qt/guiutil.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 3a1f9b8e0..a2699d374 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -686,8 +686,6 @@ bool SetStartOnSystemStartup(bool fAutoStart) fs::path static GetAutostartDir() { - namespace fs = fs; - char* pszConfigHome = getenv("XDG_CONFIG_HOME"); if (pszConfigHome) return fs::path(pszConfigHome) / "autostart"; char* pszHome = getenv("HOME"); |