Skip to content

Commit

Permalink
allow namespacing cxx
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Oct 29, 2024
1 parent 1d829f7 commit a717ff1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/nanoarrow/nanoarrow_config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@

@NANOARROW_NAMESPACE_DEFINE@

#define NANOARROW_CXX_NAMESPACE_BEGIN namespace nanoarrow {
#if !defined(NANOARROW_CXX_NAMESPACE)
#define NANOARROW_CXX_NAMESPACE nanoarrow
#endif

#define NANOARROW_CXX_NAMESPACE_BEGIN namespace NANOARROW_CXX_NAMESPACE {
#define NANOARROW_CXX_NAMESPACE_END }

#endif

0 comments on commit a717ff1

Please sign in to comment.