diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-06-28 15:06:04 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-06-28 15:06:18 +0200 |
| commit | 9125ef942174254d4afdf96c3eda1da12dff01e0 (patch) | |
| tree | b9302084bb363a0e68bdab96bf2aff4a1fac4bb8 /src/util.cpp | |
| parent | Merge pull request #4418 (diff) | |
| parent | update coding.md to reflect changes by pull (diff) | |
| download | discoin-9125ef942174254d4afdf96c3eda1da12dff01e0.tar.xz discoin-9125ef942174254d4afdf96c3eda1da12dff01e0.zip | |
Merge pull request #4398
86fe1b8 update coding.md to reflect changes by pull (Philip Kaufmann)
e10dcf2 ensure clean and consistent "namespace" usage (Philip Kaufmann)
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 9e4b2b787..9591372f9 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -77,11 +77,12 @@ // See also: http://stackoverflow.com/questions/10020179/compilation-fail-in-boost-librairies-program-options // http://clang.debian.net/status.php?version=3.0&key=CANNOT_FIND_FUNCTION namespace boost { + namespace program_options { std::string to_internal(const std::string&); } -} +} // namespace boost using namespace std; |