[llvm] 2620459 - [llvm] Fix header guards (NFC)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 16 23:23:33 PST 2021


Author: Kazu Hirata
Date: 2021-02-16T23:23:07-08:00
New Revision: 2620459baabee93b7e328399b742848ff87ac515

URL: https://github.com/llvm/llvm-project/commit/2620459baabee93b7e328399b742848ff87ac515
DIFF: https://github.com/llvm/llvm-project/commit/2620459baabee93b7e328399b742848ff87ac515.diff

LOG: [llvm] Fix header guards (NFC)

Identified with llvm-header-guard.

Added: 
    

Modified: 
    llvm/include/llvm/Support/SHA256.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Support/SHA256.h b/llvm/include/llvm/Support/SHA256.h
index 29270e1ad658..9e295b0b9fae 100644
--- a/llvm/include/llvm/Support/SHA256.h
+++ b/llvm/include/llvm/Support/SHA256.h
@@ -19,8 +19,8 @@
  */
 //===----------------------------------------------------------------------===//
 
-#ifndef LLVM_SUPPORT_SHA2_H
-#define LLVM_SUPPORT_SHA2_H
+#ifndef LLVM_SUPPORT_SHA256_H
+#define LLVM_SUPPORT_SHA256_H
 
 #include <array>
 #include <cstdint>
@@ -87,4 +87,4 @@ class SHA256 {
 
 } // namespace llvm
 
-#endif // LLVM_SUPPORT_SHA2_H
+#endif // LLVM_SUPPORT_SHA256_H


        


More information about the llvm-commits mailing list