[flang-commits] [flang] 7026960 - [flang][runtime][NFC] Fix header guard typo (#111741)

via flang-commits flang-commits at lists.llvm.org
Thu Oct 10 10:31:06 PDT 2024


Author: Valentin Clement (バレンタイン クレメン)
Date: 2024-10-10T10:31:03-07:00
New Revision: 7026960ecfe156223c4126495c146ce0d42c64a7

URL: https://github.com/llvm/llvm-project/commit/7026960ecfe156223c4126495c146ce0d42c64a7
DIFF: https://github.com/llvm/llvm-project/commit/7026960ecfe156223c4126495c146ce0d42c64a7.diff

LOG: [flang][runtime][NFC] Fix header guard typo (#111741)

Header guard was in sync with the filename.

Added: 
    

Modified: 
    flang/include/flang/Runtime/allocator-registry.h

Removed: 
    


################################################################################
diff  --git a/flang/include/flang/Runtime/allocator-registry.h b/flang/include/flang/Runtime/allocator-registry.h
index acfada506fafc6..3ccee56dc3fc0f 100644
--- a/flang/include/flang/Runtime/allocator-registry.h
+++ b/flang/include/flang/Runtime/allocator-registry.h
@@ -6,8 +6,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef FORTRAN_RUNTIME_ALLOCATOR_H_
-#define FORTRAN_RUNTIME_ALLOCATOR_H_
+#ifndef FORTRAN_RUNTIME_ALLOCATOR_REGISTRY_H_
+#define FORTRAN_RUNTIME_ALLOCATOR_REGISTRY_H_
 
 #include "flang/Common/api-attrs.h"
 #include <cstdlib>
@@ -62,4 +62,4 @@ RT_OFFLOAD_VAR_GROUP_END
 
 } // namespace Fortran::runtime
 
-#endif // FORTRAN_RUNTIME_ALLOCATOR_H_
+#endif // FORTRAN_RUNTIME_ALLOCATOR_REGISTRY_H_


        


More information about the flang-commits mailing list