diff --git a/example/delay.c b/example/delay.c index 23f2525..bb520ed 100644 --- a/example/delay.c +++ b/example/delay.c @@ -14,6 +14,7 @@ #include #include #include +#include /* The time complexity of DELAY(N) is O(pow(2,N)). * @@ -31,7 +32,7 @@ */ #ifndef DELAY_MAX -#define DELAY_MAX 16 +#define DELAY_MAX 15 #endif #define DELAY(N) BOOST_PP_TUPLE_ELEM(2,0,(BOOST_PP_EMPTY,BOOST_PP_WHILE(DELAY_C,BOOST_PP_CAT(DELAY_F,N),BOOST_PP_DEC(N))))() diff --git a/test/preprocessor_test.cpp b/test/preprocessor_test.cpp index a28690d..6931850 100644 --- a/test/preprocessor_test.cpp +++ b/test/preprocessor_test.cpp @@ -16,6 +16,7 @@ #include #include #include +#include #include