diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-01 17:57:28 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-01 17:57:28 +0300 |
commit | ce2fb802dd7fe99487c8ce743e092ac8ce54b1b2 (patch) | |
tree | dbb779adf52969bee0612bc63a43403edb3ac98b /_posts | |
parent | bump dependencies (diff) | |
download | jekyll-theme-ce2fb802dd7fe99487c8ce743e092ac8ce54b1b2.tar.gz jekyll-theme-ce2fb802dd7fe99487c8ce743e092ac8ce54b1b2.zip |
fix licensing notices
Diffstat (limited to '_posts')
-rw-r--r-- | _posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md | 7 |
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"; } |