SOCI / soci

Official repository of the SOCI - The C++ Database Access Library
http://soci.sourceforge.net/
Boost Software License 1.0
1.37k stars 472 forks source link

File "private/soci-trivial-blob-backend.h" missing #1153

Open Spixmaster opened 3 weeks ago

Spixmaster commented 3 weeks ago

@Krzmbrzl, the commit #992 includes #include <private/soci-trivial-blob-backend.h> which is not present when installed with CMake.

Krzmbrzl commented 3 weeks ago

See my revamp cmake PR. I think there this should be fixed

Spixmaster commented 3 weeks ago

1118 for reference.

vadz commented 3 weeks ago

Private headers are not supposed to be installed, so if this header is used by the public headers, it can't be private.

I.e. it's not (just) a build system problem, it's a problem with the header name/path.

Spixmaster commented 3 weeks ago

The header is used two times, here and here.