MCPcopy Create free account
hub / github.com/SqliteModernCpp/sqlite_modern_cpp / operator|

Function operator|

hdr/sqlite_modern_cpp.h:366–368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

364 URI = SQLITE_OPEN_URI
365 };
366 inline OpenFlags operator|(const OpenFlags& a, const OpenFlags& b) {
367 return static_cast<OpenFlags>(static_cast<int>(a) | static_cast<int>(b));
368 };
369 enum class Encoding {
370 ANY = SQLITE_ANY,
371 UTF8 = SQLITE_UTF8,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected