diff options
author | Jim Ingham <jingham@apple.com> | 2015-11-05 18:51:48 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2015-11-05 18:51:48 +0000 |
commit | 6192d1c050bf9cf6ea9f20e5ec8d3fd380088b9b (patch) | |
tree | e580dd73bab63c37a17a76d388ebc6b9e37b33d1 | |
parent | edd0e2639e2a73527a9f1afb3a829dbf2dbff95c (diff) | |
download | bcm5719-llvm-6192d1c050bf9cf6ea9f20e5ec8d3fd380088b9b.tar.gz bcm5719-llvm-6192d1c050bf9cf6ea9f20e5ec8d3fd380088b9b.zip |
Remove Copy and Paste error in a comment.
llvm-svn: 252184
-rw-r--r-- | lldb/include/lldb/Symbol/CompileUnit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/include/lldb/Symbol/CompileUnit.h b/lldb/include/lldb/Symbol/CompileUnit.h index d4b343a4de1..393966da053 100644 --- a/lldb/include/lldb/Symbol/CompileUnit.h +++ b/lldb/include/lldb/Symbol/CompileUnit.h @@ -447,7 +447,7 @@ private: flagsParsedVariables = (1u << 1), ///< Have we already parsed globals and statics? flagsParsedSupportFiles = (1u << 2), ///< Have we already parsed the support files for this compile unit? flagsParsedLineTable = (1u << 3), ///< Have we parsed the line table already? - flagsParsedLanguage = (1u << 4), ///< Have we parsed the line table already? + flagsParsedLanguage = (1u << 4), ///< Have we parsed the language already? flagsParsedImportedModules = (1u << 5) ///< Have we parsed the imported modules already? }; |