From ce2fb802dd7fe99487c8ce743e092ac8ce54b1b2 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 1 Oct 2016 17:57:28 +0300 Subject: fix licensing notices --- _posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to '_posts') 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"; } -- cgit v1.2.3