We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f654b3 commit 39f80d4Copy full SHA for 39f80d4
hdr/sqlite_modern_cpp.h
@@ -443,7 +443,7 @@ namespace sqlite {
443
PRIVATECACH = SQLITE_OPEN_PRIVATECACHE,
444
URI = SQLITE_OPEN_URI
445
};
446
- OpenFlags operator|(const OpenFlags& a, const OpenFlags& b) {
+ inline OpenFlags operator|(const OpenFlags& a, const OpenFlags& b) {
447
return static_cast<OpenFlags>(static_cast<int>(a) | static_cast<int>(b));
448
449
enum class Encoding {
0 commit comments