Skip to content

Commit

Permalink
Add missing string header to primitives file.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyong committed Feb 15, 2014
1 parent bae6f95 commit 6ba69bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions include/exotics.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#pragma once

#include "function.h"
#include "primitives.h"

/*
* Extends manipulation of primitives on the stack with more exotic
Expand All @@ -25,7 +24,7 @@ inline sel::function<R(Args...)> _get(_id<sel::function<R(Args...)>> id,
}

template <typename R, typename... Args>
void _push(lua_State *l, sel::function<R(Args...)> fun) {
inline void _push(lua_State *l, sel::function<R(Args...)> fun) {
fun.Push(l);
}

Expand Down
1 change: 1 addition & 0 deletions include/primitives.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <string>
#include "traits.h"

extern "C" {
Expand Down

0 comments on commit 6ba69bd

Please sign in to comment.