diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-02-17 15:57:45 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-02-17 23:15:40 -0800 |
commit | cdc514e4c67f268b07863bbac3d8d7e0d088186c (patch) | |
tree | f0fb246ba7873555bfac50427bf4a95948da4aae /lldb/source/Commands/CommandObjectSource.h | |
parent | 866b7a651949f373a3b191f5fee3a7fe0a2709be (diff) | |
download | llvm-cdc514e4c67f268b07863bbac3d8d7e0d088186c.zip llvm-cdc514e4c67f268b07863bbac3d8d7e0d088186c.tar.gz llvm-cdc514e4c67f268b07863bbac3d8d7e0d088186c.tar.bz2 |
[lldb] Update header guards to be consistent and compliant with LLVM (NFC)
LLDB has a few different styles of header guards and they're not very
consistent because things get moved around or copy/pasted. This patch
unifies the header guards across LLDB and converts everything to match
LLVM's style.
Differential revision: https://reviews.llvm.org/D74743
Diffstat (limited to 'lldb/source/Commands/CommandObjectSource.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectSource.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectSource.h b/lldb/source/Commands/CommandObjectSource.h index a4b8823..f2117bd 100644 --- a/lldb/source/Commands/CommandObjectSource.h +++ b/lldb/source/Commands/CommandObjectSource.h @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef liblldb_CommandObjectSource_h_ -#define liblldb_CommandObjectSource_h_ +#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTSOURCE_H +#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTSOURCE_H #include "lldb/Interpreter/CommandObjectMultiword.h" @@ -25,4 +25,4 @@ public: } // namespace lldb_private -#endif // liblldb_CommandObjectSource_h_ +#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTSOURCE_H |