aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts
diff options
context:
space:
mode:
Diffstat (limited to '_posts')
-rw-r--r--_posts/2015-07-03-std-call-once-bug-in-visual-studio-2012-2013.md2
1 files changed, 0 insertions, 2 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 7b4fcad..197d8ff 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
@@ -41,8 +41,6 @@ Anyway, I was designing a software system with a couple of singletons in it.
I was trying to do proper singletons using C++11 like this:
{% highlight c++ %}
-#pragma once
-
#include <mutex>
template <typename DerivedT>