From 02f8248d0f62bda610351e8f1726f81c46e66fbc Mon Sep 17 00:00:00 2001 From: Rapptz Date: Wed, 22 Jan 2014 12:51:09 -0500 Subject: [PATCH] Fix compiler error from using sol::sol_error in get_nil --- sol/stack.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sol/stack.hpp b/sol/stack.hpp index 50ca2540..3baf02c5 100644 --- a/sol/stack.hpp +++ b/sol/stack.hpp @@ -22,6 +22,7 @@ #ifndef SOL_STACK_HPP #define SOL_STACK_HPP +#include "error.hpp" #include "reference.hpp" #include "tuple.hpp" #include "traits.hpp"