diff options
| author | Reid Kleckner <rnk@google.com> | 2019-04-04 00:13:16 +0000 |
|---|---|---|
| committer | Reid Kleckner <rnk@google.com> | 2019-04-04 00:13:16 +0000 |
| commit | b056f91ac8287056224c0b10565ca999c6152f24 (patch) | |
| tree | 6da8765ddea7316f1b285ac35a1e8fc4eeffa25f /llvm | |
| parent | e9f2847b815a05fe1b4eefac9c00b304e3c88dfa (diff) | |
| download | bcm5719-llvm-b056f91ac8287056224c0b10565ca999c6152f24.tar.gz bcm5719-llvm-b056f91ac8287056224c0b10565ca999c6152f24.zip | |
Fix minor innaccuracy in previous comment on ManagedStaticBase
llvm-svn: 357656
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Support/ManagedStatic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/ManagedStatic.h b/llvm/include/llvm/Support/ManagedStatic.h index ebf9bba5c22..0c02e136744 100644 --- a/llvm/include/llvm/Support/ManagedStatic.h +++ b/llvm/include/llvm/Support/ManagedStatic.h @@ -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. |

