diff options
| author | Philip Kaufmann <[email protected]> | 2015-05-31 15:36:44 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2015-06-04 19:34:18 +0200 |
| commit | a9ac95c1bc67726a7d6eecb35d7650eed6c89361 (patch) | |
| tree | ba9b43d9b01e925d2050d7084a11aec927a2d564 /src/util.h | |
| parent | Merge pull request #6121 (diff) | |
| download | discoin-a9ac95c1bc67726a7d6eecb35d7650eed6c89361.tar.xz discoin-a9ac95c1bc67726a7d6eecb35d7650eed6c89361.zip | |
use const references where appropriate
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index 4cc0faf4d..6ec81698e 100644 --- a/src/util.h +++ b/src/util.h @@ -126,7 +126,7 @@ boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate = true); #endif boost::filesystem::path GetTempPath(); void ShrinkDebugFile(); -void runCommand(std::string strCommand); +void runCommand(const std::string& strCommand); inline bool IsSwitchChar(char c) { |