Commit d75aa7d7 authored by Dominik Charousset's avatar Dominik Charousset

Fix doxygen comment (missing /)

parent a8c4fd17
...@@ -273,13 +273,13 @@ ...@@ -273,13 +273,13 @@
#endif // CAF_MSVC #endif // CAF_MSVC
// Makes a transition into another state if the `statement` is true. /// Makes a transition into another state if the `statement` is true.
#define transition_if(statement, ...) \ #define transition_if(statement, ...) \
if (statement) { \ if (statement) { \
transition(__VA_ARGS__) \ transition(__VA_ARGS__) \
} }
// Makes an epsiolon transition into another state if the `statement` is true. /// Makes an epsiolon transition into another state if the `statement` is true.
#define epsilon_if(statement, ...) \ #define epsilon_if(statement, ...) \
if (statement) { \ if (statement) { \
epsilon(__VA_ARGS__) \ epsilon(__VA_ARGS__) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment