diff options
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/ManagedStatic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/ManagedStatic.cpp b/lib/Support/ManagedStatic.cpp index a3b2bcc66a..6de65752b3 100644 --- a/lib/Support/ManagedStatic.cpp +++ b/lib/Support/ManagedStatic.cpp @@ -42,7 +42,7 @@ void ManagedStaticBase::RegisterManagedStatic(void *(*Creator)(), ManagedStaticMutex->release(); } else { assert(Ptr == 0 && DeleterFn == 0 && Next == 0 && - "Partially initialized ManagedStatic!?"); + "Partially initialized ManagedStatic!?"); Ptr = Creator ? Creator() : 0; DeleterFn = Deleter; |