[llvm] 0604e0b - [JITLink] Reformat an enum.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 17 21:44:04 PDT 2021


Author: Lang Hames
Date: 2021-03-17T21:43:53-07:00
New Revision: 0604e0bc683eeae76416568411369ba7fd8a1b34

URL: https://github.com/llvm/llvm-project/commit/0604e0bc683eeae76416568411369ba7fd8a1b34
DIFF: https://github.com/llvm/llvm-project/commit/0604e0bc683eeae76416568411369ba7fd8a1b34.diff

LOG: [JITLink] Reformat an enum.

Added: 
    

Modified: 
    llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h b/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
index 9795700581be..799284d38cb7 100644
--- a/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
+++ b/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
@@ -282,7 +282,11 @@ const char *getLinkageName(Linkage L);
 ///   Default -- Visible in the public interface of the linkage unit.
 ///   Hidden -- Visible within the linkage unit, but not exported from it.
 ///   Local -- Visible only within the LinkGraph.
-enum class Scope : uint8_t { Default, Hidden, Local };
+enum class Scope : uint8_t {
+  Default,
+  Hidden,
+  Local
+};
 
 /// For debugging output.
 const char *getScopeName(Scope S);


        


More information about the llvm-commits mailing list