From 6cfd987c0d9bb4a36167e0a6fd9817f7478c9b79 Mon Sep 17 00:00:00 2001 From: Stoyan Gaydarov Date: Sun, 8 Jul 2018 12:05:34 -0700 Subject: [PATCH] Remove an outdated comment, with c++11 enabled the code is thread safe --- library/include/Core.h | 1 - 1 file changed, 1 deletion(-) diff --git a/library/include/Core.h b/library/include/Core.h index 9ea24f15a..d83ee9aea 100644 --- a/library/include/Core.h +++ b/library/include/Core.h @@ -136,7 +136,6 @@ namespace DFHack /// Get the single Core instance or make one. static Core& getInstance() { - // FIXME: add critical section for thread safety here. static Core instance; return instance; }