-.- Macros.

This commit is contained in:
ThePhD 2016-04-17 02:32:51 -04:00
parent 90ea495d4c
commit 4e029b7a00
2 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@
#include "stack.hpp"
#include "stack_proxy.hpp"
#include "proxy_base.hpp"
#include <limits>
#include <cstdint>
namespace sol {
struct function_result : public proxy_base<function_result> {
@ -78,7 +78,7 @@ public:
};
template <>
struct bond_size<function_result> : std::integral_constant<std::size_t, SIZE_T_MAX> {};
struct bond_size<function_result> : std::integral_constant<std::size_t, SIZE_MAX> {};
template <std::size_t I>
stack_proxy get(const function_result& fr) {

View File

@ -27,7 +27,7 @@
#include "stack.hpp"
#include "proxy_base.hpp"
#include "stack_proxy.hpp"
#include <limits>
#include <cstdint>
namespace sol {
struct protected_function_result : public proxy_base<protected_function_result> {
@ -128,7 +128,7 @@ public:
};
template <>
struct bond_size<protected_function_result> : std::integral_constant<std::size_t, SIZE_T_MAX> {};
struct bond_size<protected_function_result> : std::integral_constant<std::size_t, SIZE_MAX> {};
template <std::size_t I>
stack_proxy get(const protected_function_result& fr) {