diff options
Diffstat (limited to 'std_call_once_bug')
-rw-r--r-- | std_call_once_bug/README.md | 7 | ||||
-rw-r--r-- | std_call_once_bug/sample.cpp | 4 |
2 files changed, 5 insertions, 6 deletions
diff --git a/std_call_once_bug/README.md b/std_call_once_bug/README.md index c42f191..176dda0 100644 --- a/std_call_once_bug/README.md +++ b/std_call_once_bug/README.md @@ -9,11 +9,10 @@ Building Create the build files using CMake and build using your native build tools (Visual Studio/make/etc.). -In the example below, the project directory is -"C:\workspace\personal\cpp-notes" and Visual Studio 2013 is used, targeting -x86. +In the example below, the project directory is "C:\workspace\personal\blog" +and Visual Studio 2013 is used, targeting x86. - > cmake -G "Visual Studio 12 2013" C:\workspace\personal\cpp-notes\std_call_once_bug + > cmake -G "Visual Studio 12 2013" C:\workspace\personal\blog\std_call_once_bug ... > cmake --build . --config release diff --git a/std_call_once_bug/sample.cpp b/std_call_once_bug/sample.cpp index 22a63c6..01b5092 100644 --- a/std_call_once_bug/sample.cpp +++ b/std_call_once_bug/sample.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "C++ notes" project. -// For details, see https://github.com/egor-tensin/cpp-notes. +// This file is part of the "Egor's blog" project. +// For details, see https://github.com/egor-tensin/blog. // Distributed under the MIT License. #include <ctime> |