diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-21 05:04:45 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-21 05:04:45 +0300 |
commit | 37d6dc2cc28a26306651ba1a9251fa1a8161633e (patch) | |
tree | 3c1a07191c742d813df46596da79681d732efc34 /_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md | |
parent | fix links & code style (diff) | |
download | jekyll-theme-37d6dc2cc28a26306651ba1a9251fa1a8161633e.tar.gz jekyll-theme-37d6dc2cc28a26306651ba1a9251fa1a8161633e.zip |
put most of my personal info to _config.yml
Diffstat (limited to '_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md')
-rw-r--r-- | _posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md | 16 |
1 files changed, 10 insertions, 6 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 2b11d54..accafd4 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 @@ -16,9 +16,10 @@ This post, including code samples, is licenced under the terms of the MIT License. See [LICENSE.txt] for details. -[LICENSE.txt]: https://github.com/egor-tensin/cpp-notes/blob/gh-pages/LICENSE.txt +[LICENSE.txt]: {{ site.github.repository_url }}/blob/gh-pages/LICENSE.txt -## Introduction +Introduction +------------ I've recently come across a nasty standard library bug in the implementation shipped with Microsoft Visual Studio 2012/2013. @@ -38,7 +39,8 @@ misbehaviours. [Connect page]: https://connect.microsoft.com/VisualStudio [Stephan T. Lavavej]: http://nuwen.net/stl.html -## C++11 and singletons +C++11 and singletons +-------------------- Anyway, the story begins with me trying to implement the singleton pattern using C++11 facilities like this: @@ -140,7 +142,8 @@ needed.</p> [N2660]: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2660.htm -## The bug +The Bug +------- Unfortunately, matters became a bit more complicated when I tried to have two singleton classes. @@ -280,9 +283,10 @@ simple example above to misbehave. The [complete code] sample to demonstrate the misbehaviour described above can be found in the blog's repository. -[complete code]: https://github.com/egor-tensin/cpp-notes/tree/gh-pages/src/posts/std_call_once_bug_in_visual_studio_2012_2013 +[complete code]: {{ site.github.repository_url }}/tree/gh-pages/src/posts/std_call_once_bug_in_visual_studio_2012_2013 -## Resolution +Resolution +---------- So, since I couldn't submit the bug via Visual Studio's [Connect page], I wrote to Mr. Lavavej directly, not hoping for an answer. |