eyalroz / monetdb-bbp-reader

A C++ library for reading MonetDB's persisted storage format (BBP)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't expose `::util::` symbols

eyalroz opened this issue · comments

Our library currently exposes symbols in the ::util:: namespace, which are only used internally. That shouldn't happen - others might want to use those names.

Here's an SO question about this issue..

For now, let's use a workaround - move a lot of the utility code into a nameapace - avoiding accidental dependencies by outside source but not making the symbols actually private.