Skip to content

Commit

Permalink
Merge pull request #67 from flaming0/master
Browse files Browse the repository at this point in the history
Fix VS build
  • Loading branch information
jeremyong committed Feb 21, 2015
2 parents 1c5f392 + d7dcfa6 commit 6af4df6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/selene/Selector.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Selector {

Selector(lua_State *s, Registry &r, const std::string &name,
std::vector<Fun> traversal, Fun get, PFun put)
: _state(s), _registry(r), _name(name), _traversal{traversal},
: _state(s), _registry(r), _name(name), _traversal(traversal),
_get(get), _put(put) {}

Selector(lua_State *s, Registry &r, const char *name)
Expand Down Expand Up @@ -74,10 +74,10 @@ class Selector {
Selector(const Selector &other)
: _state(other._state),
_registry(other._registry),
_name{other._name},
_traversal{other._traversal},
_get{other._get},
_put{other._put},
_name(other._name),
_traversal(other._traversal),
_get(other._get),
_put(other._put),
_functor(other._functor)
{}

Expand Down

0 comments on commit 6af4df6

Please sign in to comment.