summaryrefslogtreecommitdiff
path: root/src/sexpr
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2014-04-14 14:27:59 -0700
committerBen Longbons <b.r.longbons@gmail.com>2014-04-19 20:09:35 -0700
commit147c3e9c891c12dbfd39b65ee0f5baddf5f81b14 (patch)
tree8b8f6c86691e13c522e1e9237f7587a5a147cd52 /src/sexpr
parent7f16d356995d4e9c29105f98d502a7e51a4c775d (diff)
downloadtmwa-147c3e9c891c12dbfd39b65ee0f5baddf5f81b14.tar.gz
tmwa-147c3e9c891c12dbfd39b65ee0f5baddf5f81b14.tar.bz2
tmwa-147c3e9c891c12dbfd39b65ee0f5baddf5f81b14.tar.xz
tmwa-147c3e9c891c12dbfd39b65ee0f5baddf5f81b14.zip
Make clang and libc++ happy
Diffstat (limited to 'src/sexpr')
-rw-r--r--src/sexpr/lexer.hpp2
-rw-r--r--src/sexpr/parser.cpp2
-rw-r--r--src/sexpr/parser.hpp2
3 files changed, 6 insertions, 0 deletions
diff --git a/src/sexpr/lexer.hpp b/src/sexpr/lexer.hpp
index 84c9e1d..f190f9f 100644
--- a/src/sexpr/lexer.hpp
+++ b/src/sexpr/lexer.hpp
@@ -21,6 +21,8 @@
# include "../sanity.hpp"
+# include <vector>
+
# include "../strings/astring.hpp"
# include "../strings/vstring.hpp"
# include "../strings/xstring.hpp"
diff --git a/src/sexpr/parser.cpp b/src/sexpr/parser.cpp
index 2068565..c096649 100644
--- a/src/sexpr/parser.cpp
+++ b/src/sexpr/parser.cpp
@@ -18,6 +18,8 @@
// 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 "../poison.hpp"
namespace sexpr
diff --git a/src/sexpr/parser.hpp b/src/sexpr/parser.hpp
index 6097f78..5352afc 100644
--- a/src/sexpr/parser.hpp
+++ b/src/sexpr/parser.hpp
@@ -21,6 +21,8 @@
# include "../sanity.hpp"
+# include <cstdlib>
+
# include "../strings/zstring.hpp"
# include "../io/line.hpp"