aboutsummaryrefslogtreecommitdiff
path: root/odb
AgeCommit message (Collapse)AuthorFilesLines
2017-05-24Bump version to 2.5.0-b.32.5.0-b.3Boris Kolpackov2-5/+5
2017-05-05Bump version to 2.5.0-b.2.z, master is open for businessBoris Kolpackov2-5/+5
2017-04-29Add ODB_VERSION for ODB compilerBoris Kolpackov1-0/+4
2017-04-29Add parallel version headers for build2Boris Kolpackov3-0/+52
2017-04-28Add out_root to include search path now that we auto-generate versionBoris Kolpackov1-2/+2
2017-04-28Bump version to 2.5.0.b.1.z, switch to build2 version moduleBoris Kolpackov2-7/+7
2017-04-05Add ability to mark unloaded section as loadedBoris Kolpackov1-0/+9
Can be useful to skip loading state that is going to be overwritten.
2017-01-03Update copyright yearBoris Kolpackov180-180/+180
2016-12-05Fix incomplete 2.5.0-a11 version updateBoris Kolpackov1-1/+1
2016-12-05Adapt buildfiles to expansion changeKaren Arutyunov1-2/+2
2016-10-04Add missing semicolonBoris Kolpackov1-1/+1
2016-10-03Don't throw from posix::thread dtorBoris Kolpackov1-4/+1
2016-09-08Bump version to 2.5.0-a11Boris Kolpackov1-3/+3
2016-09-02Work around Apple Clang's lack of C++11 thread_local supportBoris Kolpackov1-2/+11
2016-08-31Build infrastructure updateKaren Arutyunov1-0/+8
2016-08-31build2 build system fixesBoris Kolpackov1-1/+1
2016-08-23Fix install.* variable values in buildfilesBoris Kolpackov1-3/+3
2016-08-22Bump version to 2.5.0-a10Boris Kolpackov1-4/+4
2016-08-20Fix invalid forward reference to std::mutexBoris Kolpackov1-2/+1
2016-08-19Add missing export2.5.0-a9Boris Kolpackov1-1/+1
2016-08-16Try to clean up inline exportsBoris Kolpackov17-55/+17
2016-08-16Forward-declare query resultBoris Kolpackov1-0/+2
2016-08-15Remove inclusion of <odb/database.hxx> from lazy-ptr headerBoris Kolpackov1-2/+3
Its inclusion slowed down compilation significantly. The consequence of this change is that you will now have to make sure <odb/database.hxx> is included in source files that initialize persistent lazy_ptr instances. But that is probably acceptable (and is probably already the case anyway most of the time).
2016-08-14Bump version to 2.5.0-a9Boris Kolpackov1-4/+4
Note that we now use the -[ab]N schema rather than .[ab]N.
2016-08-08Minor makefile rearrangementBoris Kolpackov1-2/+2
2016-08-05Initial take on build2-based buildBoris Kolpackov15-9/+371
Only C++11 is supported with GCC 4.8 and up and VC 14 and up. This change also introduces the ODB_THREADS_CXX11 threading model. It is the default for the build2 build but can be disabled with a global ODB_THREADS_NONE define (global means that it should be in effect both when building and using the library).
2016-08-04Minor config.hxx rearrangementBoris Kolpackov1-9/+15
2016-08-03Fold odb/compiler/*/{pre post}.hxx into odb/{pre post}.hxxBoris Kolpackov4-30/+19
We only needed it for one compiler (VC) ever.
2016-08-03Reorganize config filesBoris Kolpackov2-37/+25
Split config.h inclusion and C++11 tests. Move VC C++11 to config.hxx.
2016-07-20Add missing comparison operators for odb::nullableBoris Kolpackov1-0/+33
2016-06-15Bump version to 2.5.0.a8Boris Kolpackov1-4/+4
2016-06-15Get rid of C++11 deprecation warnings for auto_ptr, exception specsBoris Kolpackov24-174/+235
In particular, std::auto_ptr is no longer mapped in C++11.
2016-06-15Fix bug in std::unique_ptr deleter mappingBoris Kolpackov1-8/+8
2016-05-16Provide manual move constructor implementation for VS2013Boris Kolpackov1-1/+12
2016-05-06Bump version to 2.5.0.a7Boris Kolpackov1-4/+4
2016-04-06Bump version to 2.5.0.a6Boris Kolpackov1-4/+4
2016-04-04Add _has_cache() custom session interface, use in OLV implementationBoris Kolpackov1-0/+3
2016-03-22Use object_type instead of T in case T is const T1Boris Kolpackov1-1/+2
2016-02-12Bump version to 2.5.0.a5Boris Kolpackov1-4/+4
2016-01-20Bump version to 2.5.0.a4Boris Kolpackov1-4/+4
2016-01-20Suppress C4275Boris Kolpackov1-0/+3
2015-12-20Detect Clang that pretends to be very old GCCBoris Kolpackov1-1/+3
On FreeBSD, Clang 3.7 says it is GCC 4.2. Go figure.
2015-11-29Fix bug in lazy_ptr implementationBoris Kolpackov1-1/+1
2015-11-09Bump version to 2.5.0.a2Boris Kolpackov1-4/+4
2015-11-09Make database class move-constructibleBoris Kolpackov7-14/+59
This means it can be returned by value from a function in C++11.
2015-10-14Fix transfer_ptr not to rely on copy elisionBoris Kolpackov1-1/+19
2015-10-01Add helper header for nested container emulationBoris Kolpackov1-0/+115
Still fairly experimental, only supports vector<vector<T>>.
2015-09-16Use explicit to-bool conversion in pointer comparisonBoris Kolpackov1-4/+4
Since we have explicit operator bool().
2015-08-31Add missing move() in C++11 modeBoris Kolpackov4-0/+16
2015-08-14Reimplement lazy_weak_ptr lock() to preserve database typeBoris Kolpackov6-55/+27
Now we initialize the returned lazy_shared_ptr with the same loader function as the one set for weak_ptr.