Skip to content

Commit 7d1f3e3

Browse files
committed
Renamed file sign.hpp to block.hpp
1 parent a7e015c commit 7d1f3e3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

include/sign.hpp renamed to include/block.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef SIGN
2-
#define SIGN
1+
#ifndef BLOCK
2+
#define BLOCK
33

44
/*==============================================================================
55
Includes
@@ -137,4 +137,4 @@ template <class T, class D> std::string blockToString(Block<T, D> block) {
137137
return str;
138138
}
139139

140-
#endif /* SIGN */
140+
#endif /* BLOCK */

include/component.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/*==============================================================================
55
Includes
66
==============================================================================*/
7-
#include "sign.hpp"
7+
#include "block.hpp"
88
#include "stack.hpp"
99
#include <memory>
1010
#include <string>

include/compressedStack.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "buffer.hpp"
88
#include "component.hpp"
99
#include "data.hpp"
10-
#include "sign.hpp"
10+
#include "block.hpp"
1111
#include "stack.hpp"
1212
#include <algorithm>
1313
#include <cmath>

include/stack.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Includes
66
==============================================================================*/
77
#include "data.hpp"
8-
#include "sign.hpp"
8+
#include "block.hpp"
99
#include <memory>
1010

1111
/*==============================================================================

0 commit comments

Comments
 (0)