mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-20 13:37:28 +02:00
Remove namespace fs=fs
Having these inside functions is silly and redundant now.
This commit is contained in:
parent
75594bd7f2
commit
f110272dc9
3 changed files with 0 additions and 8 deletions
|
|
@ -513,7 +513,6 @@ void PrintExceptionContinue(const std::exception* pex, const char* pszThread)
|
|||
|
||||
fs::path GetDefaultDataDir()
|
||||
{
|
||||
namespace fs = fs;
|
||||
// Windows < Vista: C:\Documents and Settings\Username\Application Data\Bitcoin
|
||||
// Windows >= Vista: C:\Users\Username\AppData\Roaming\Bitcoin
|
||||
// Mac: ~/Library/Application Support/Bitcoin
|
||||
|
|
@ -544,7 +543,6 @@ static CCriticalSection csPathCached;
|
|||
|
||||
const fs::path &GetDataDir(bool fNetSpecific)
|
||||
{
|
||||
namespace fs = fs;
|
||||
|
||||
LOCK(csPathCached);
|
||||
|
||||
|
|
@ -789,8 +787,6 @@ void ShrinkDebugFile()
|
|||
#ifdef WIN32
|
||||
fs::path GetSpecialFolderPath(int nFolder, bool fCreate)
|
||||
{
|
||||
namespace fs = fs;
|
||||
|
||||
char pszPath[MAX_PATH] = "";
|
||||
|
||||
if(SHGetSpecialFolderPathA(NULL, pszPath, nFolder, fCreate))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue