Skip to content

Commit 04dad76

Browse files
committed
Rename directory
1 parent 7e59ac3 commit 04dad76

13 files changed

Lines changed: 24 additions & 24 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef IRIS_PREPROCESS_BOOL_HPP
22
#define IRIS_PREPROCESS_BOOL_HPP
33

4-
#include <iris/preprocess/cat.hpp>
4+
#include <iris/pp/cat.hpp>
55

66
#define IRIS_PP_BOOL(expr) IRIS_PP_CAT(IRIS_PP_BOOL_I_, expr)
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef IRIS_PREPROCESS_DECREMENT_HPP
22
#define IRIS_PREPROCESS_DECREMENT_HPP
33

4-
#include <iris/preprocess/cat.hpp>
4+
#include <iris/pp/cat.hpp>
55

66
#define IRIS_PP_DECREMENT(expr) IRIS_PP_CAT(IRIS_PP_DECREMENT_I_, expr)
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef IRIS_PREPROCESS_FOR_HPP
22
#define IRIS_PREPROCESS_FOR_HPP
33

4-
#include <iris/preprocess/if.hpp>
4+
#include <iris/pp/if.hpp>
55

66
#define IRIS_PP_FOR(state, pred, update, macro) IRIS_PP_FOR_I_0(state, pred, update, macro)
77

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#ifndef IRIS_PP_IF_HPP
2-
#define IRIS_PP_IF_HPP
1+
#ifndef IRIS_PREPROCESS_IF_HPP
2+
#define IRIS_PREPROCESS_IF_HPP
33

4-
#include <iris/preprocess/bool.hpp>
5-
#include <iris/preprocess/cat.hpp>
4+
#include <iris/pp/bool.hpp>
5+
#include <iris/pp/cat.hpp>
66

77
#define IRIS_PP_IF(expr, true_expr, false_expr) IRIS_PP_IIF(IRIS_PP_BOOL(expr), true_expr, false_expr)
88
#define IRIS_PP_IIF(zero_or_one, one_expr, zero_expr) IRIS_PP_CAT(IRIS_PP_IIF_I_, zero_or_one)(one_expr, zero_expr)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef IRIS_PREPROCESS_INCREMENT_HPP
22
#define IRIS_PREPROCESS_INCREMENT_HPP
33

4-
#include <iris/preprocess/cat.hpp>
4+
#include <iris/pp/cat.hpp>
55

66
#define IRIS_PP_INCREMENT(expr) IRIS_PP_CAT(IRIS_PP_INCREMENT_I_, expr)
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef IRIS_PREPROCESS_NOT_EQUAL_HPP
22
#define IRIS_PREPROCESS_NOT_EQUAL_HPP
33

4-
#include <iris/preprocess/cat.hpp>
4+
#include <iris/pp/cat.hpp>
55

66
#define IRIS_PP_NOT_EQUAL(a, b) IRIS_PP_CAT(IRIS_PP_NOT_EQUAL_I_CHECK_, IRIS_PP_CAT(IRIS_PP_NOT_EQUAL_I_, a)(IRIS_PP_CAT(IRIS_PP_NOT_EQUAL_I_, b)))
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef IRIS_PREPROCESS_REPEAT_HPP
22
#define IRIS_PREPROCESS_REPEAT_HPP
33

4-
#include <iris/preprocess/cat.hpp>
4+
#include <iris/pp/cat.hpp>
55

66
#define IRIS_PP_REPEAT(count, macro, data) IRIS_PP_CAT(IRIS_PP_REPEAT_I_, count)(macro, data)
77

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#ifndef IRIS_PREPROCESS_SEQ_HPP
22
#define IRIS_PREPROCESS_SEQ_HPP
33

4-
#include <iris/preprocess/cat.hpp>
5-
#include <iris/preprocess/for.hpp>
4+
#include <iris/pp/cat.hpp>
5+
#include <iris/pp/for.hpp>
66

77
#define IRIS_PP_SEQ_ELEM(index, seq) IRIS_PP_SEQ_ELEM_I(IRIS_PP_CAT(IRIS_PP_SEQ_ELEM_I_, index) seq)
88
#define IRIS_PP_SEQ_ELEM_I(intermediate) IRIS_PP_SEQ_ELEM_I_I(intermediate)

0 commit comments

Comments
 (0)