aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server/lexer/token.cpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-10-17 18:38:17 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-10-17 18:38:17 +0300
commit6cce85b3a34a4a27d678abf0b4c005a38afd1738 (patch)
treef0c699f6f92b59e7e6613a30c8dd0e3ce3585540 /server/lexer/token.cpp
parentupdate cmake-common (diff)
downloadmath-server-6cce85b3a34a4a27d678abf0b4c005a38afd1738.tar.gz
math-server-6cce85b3a34a4a27d678abf0b4c005a38afd1738.zip
cmake: no more target_include_directories hacks
Diffstat (limited to '')
-rw-r--r--server/lexer/token.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/server/lexer/token.cpp b/server/lexer/token.cpp
index 5516bde..466012f 100644
--- a/server/lexer/token.cpp
+++ b/server/lexer/token.cpp
@@ -3,10 +3,9 @@
// For details, see https://github.com/egor-tensin/math-server.
// Distributed under the MIT License.
-#include "token.hpp"
-
-#include "error.hpp"
-#include "token_type.hpp"
+#include <lexer/error.hpp>
+#include <lexer/token.hpp>
+#include <lexer/token_type.hpp>
#include <cmath>
#include <limits>