]> granicus.if.org Git - graphviz/commitdiff
lib/rbtree: replace header guards with more modern #pragma once
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 2 Nov 2021 03:56:06 +0000 (20:56 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 8 Nov 2021 04:03:02 +0000 (20:03 -0800)
lib/rbtree/red_black_tree.h
lib/rbtree/stack.h

index d1181be077d83b5c3eb66e7963f94cbcff4a5d94..709df87c000b26948364f65e2f3be441e07ec5fa 100644 (file)
@@ -2,8 +2,7 @@
 *      See the LICENSE file for copyright infomation.     *
 **********************************************************/
 
-#ifndef RED_BLACK_TREE_H
-#define RED_BLACK_TREE_H
+#pragma once
 
 #ifdef __cplusplus
 extern "C" {
@@ -72,5 +71,3 @@ void NullFunction(void*);
 #ifdef __cplusplus
 }
 #endif
-
-#endif
index 062ed0a926c5abcf6c6662e90b830b1af0d7cc19..3a104b33aae4b53e719b58c35cad4bb7f9726dfd 100644 (file)
@@ -1,9 +1,8 @@
 /**********************************************************
 *      See the LICENSE file for copyright information.     *
 **********************************************************/
-    
-#ifndef STACK_H
-#define STACK_H
+
+#pragma once
 
 #ifdef __cplusplus
 extern "C" {
@@ -72,5 +71,3 @@ void StackDestroy(stk_stack * theStack,void DestFunc(void * a));
 #ifdef __cplusplus
 }
 #endif
-
-#endif