[llvm] r357656 - Fix minor innaccuracy in previous comment on ManagedStaticBase

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 3 17:13:16 PDT 2019


Author: rnk
Date: Wed Apr  3 17:13:16 2019
New Revision: 357656

URL: http://llvm.org/viewvc/llvm-project?rev=357656&view=rev
Log:
Fix minor innaccuracy in previous comment on ManagedStaticBase

Modified:
    llvm/trunk/include/llvm/Support/ManagedStatic.h

Modified: llvm/trunk/include/llvm/Support/ManagedStatic.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/ManagedStatic.h?rev=357656&r1=357655&r2=357656&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/ManagedStatic.h (original)
+++ llvm/trunk/include/llvm/Support/ManagedStatic.h Wed Apr  3 17:13:16 2019
@@ -45,8 +45,8 @@ protected:
 
 public:
   /// ManagedStaticBase must be constexpr constructed so that they can be
-  /// accessed and constructed lazily during dynamic initilization of other
-  /// global variables, such as cl::opt command line flags.
+  /// accessed during dynamic initilization of other global variables, such as
+  /// cl::opt command line flags.
   constexpr ManagedStaticBase() = default;
 
   /// isConstructed - Return true if this object has not been created yet.




More information about the llvm-commits mailing list