summaryrefslogtreecommitdiff
path: root/src/sexpr/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sexpr/parser.cpp')
-rw-r--r--src/sexpr/parser.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/sexpr/parser.cpp b/src/sexpr/parser.cpp
index 2068565..8768e14 100644
--- a/src/sexpr/parser.cpp
+++ b/src/sexpr/parser.cpp
@@ -18,8 +18,16 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
+#include <cerrno>
+
+#include "../strings/zstring.hpp"
+#include "../strings/xstring.hpp"
+
#include "../poison.hpp"
+
+namespace tmwa
+{
namespace sexpr
{
bool token_is_int(ZString s, int64_t& out, bool& ok)
@@ -77,3 +85,4 @@ namespace sexpr
return rv;
}
} // namespace sexpr
+} // namespace tmwa