aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-10-01 17:57:28 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-10-01 17:57:28 +0300
commitce2fb802dd7fe99487c8ce743e092ac8ce54b1b2 (patch)
treedbb779adf52969bee0612bc63a43403edb3ac98b /_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md
parentbump dependencies (diff)
downloadjekyll-theme-ce2fb802dd7fe99487c8ce743e092ac8ce54b1b2.tar.gz
jekyll-theme-ce2fb802dd7fe99487c8ce743e092ac8ce54b1b2.zip
fix licensing notices
Diffstat (limited to '')
-rw-r--r--_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md b/_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md
index d88ee1f..5570979 100644
--- a/_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md
+++ b/_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md
@@ -14,8 +14,7 @@ Library implementation shipped with Microsoft Visual Studio 2012/2013.
### License
-This post, including code samples, is licenced under the terms of the MIT
-License.
+Distributed under the MIT License.
See [LICENSE.txt] for details.
[LICENSE.txt]: {{ site.github.repository_url }}/blob/gh-pages/LICENSE.txt
@@ -174,7 +173,7 @@ private:
Logger()
{
// Opening log files, etc.
- std::this_thread::sleep_for(std::chrono::seconds{ 3 });
+ std::this_thread::sleep_for(std::chrono::seconds{3});
}
~Logger() = default;
@@ -188,7 +187,7 @@ private:
Duke()
{
Logger::get_instance() << "started Duke's initialization";
- std::this_thread::sleep_for(std::chrono::seconds{ 10 });
+ std::this_thread::sleep_for(std::chrono::seconds{10});
Logger::get_instance() << "finishing Duke's initialization";
}