Skip to content

Commit

Permalink
Actually generate the typ conversion call
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Mast committed Feb 20, 2015
1 parent d61af11 commit 499c27a
Show file tree
Hide file tree
Showing 30 changed files with 1,219 additions and 1,224 deletions.
8 changes: 4 additions & 4 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -968,10 +968,6 @@ if ENABLE_CLIENT
if ENABLE_PYTHON_BINDINGS
TESTS += $(doctest_wrappers)

if ENABLE_TIME_CONSUMING_TESTS
TESTS += $(stress_wrappers)
endif

TESTS += $(python_wrappers)
check_PROGRAMS += bindings/python/hyperdex/admin.so
check_PROGRAMS += bindings/python/hyperdex/client.so
Expand All @@ -984,6 +980,10 @@ if ENABLE_RUBY_BINDINGS
TESTS += $(ruby_wrappers)
endif

if ENABLE_TIME_CONSUMING_TESTS
TESTS += $(stress_wrappers)
endif

endif # ENABLE_PYTHON_BINDINGS
endif # ENABLE_CLIENT
endif # ENABLE_ADMIN
Expand Down
7 changes: 7 additions & 0 deletions bindings/c.py
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,13 @@ def generate_admin_doc():
);
}
HYPERDEX_API void
hyperdex_client_set_type_conversion(hyperdex_client* _cl, bool enabled)
{
hyperdex::client* cl = reinterpret_cast<hyperdex::client*>(_cl);
cl->set_type_conversion(enabled);
}
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
Expand Down
Loading

0 comments on commit 499c27a

Please sign in to comment.