diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2019-02-11 15:16:21 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2019-02-11 15:16:21 +0000 |
commit | 711950c1161e3abbf722e6399aff9b42c1f99750 (patch) | |
tree | 8917e53b17c5013ce4651c9ed941cd6bbec0409c /llvm/lib/DebugInfo/CodeView/CodeViewError.cpp | |
parent | eac19858e92fe977384db9a9bbc4c0968a7ec51f (diff) | |
download | bcm5719-llvm-711950c1161e3abbf722e6399aff9b42c1f99750.tar.gz bcm5719-llvm-711950c1161e3abbf722e6399aff9b42c1f99750.zip |
Move some classes into anonymous namespaces. NFC.
llvm-svn: 353710
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView/CodeViewError.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/CodeViewError.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp b/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp index 277db228071..69390c708f5 100644 --- a/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp +++ b/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp @@ -13,6 +13,7 @@ using namespace llvm; using namespace llvm::codeview; +namespace { // FIXME: This class is only here to support the transition to llvm::Error. It // will be removed once this transition is complete. Clients should prefer to // deal with the Error value directly, rather than converting to error_code. @@ -38,6 +39,7 @@ public: llvm_unreachable("Unrecognized cv_error_code"); } }; +} // namespace static llvm::ManagedStatic<CodeViewErrorCategory> CodeViewErrCategory; const std::error_category &llvm::codeview::CVErrorCategory() { |