bdlib.git
2012-03-11  Bryan DreweryExplicitly define copy/move assignment operators in... master github-org/master github/master
2012-03-11  Bryan DreweryAdd tests to cover move semantics in ReferenceCountedAr...
2012-03-11  Bryan DreweryUse std::move() where move semantics expected
2012-03-11  Bryan DreweryImplement move assignment operators
2012-03-11  Bryan DreweryAdd missing alloc swapping
2012-03-11  Bryan DreweryUse std::move() when move constructing an Array
2012-03-11  Bryan DreweryUse more effecient Move Constructors
2012-03-06  Bryan DreweryRun autoconf for c++98 standard fix
2012-03-04  Bryan DreweryCleanup logic for calling Reserve
2012-03-04  Bryan DreweryFix more cases of NULL Ref usage
2012-03-04  Bryan DreweryFix crash on empty String
2012-02-28  Bryan Drewery* Use c++98 standard if C++11 is not available
2012-02-28  Bryan Drewery* Avoid copying/freeing buf if NULL
2012-02-28  Bryan Drewery* Fix BinaryTreeIterator::operator bool() not working...
2012-02-28  Bryan Drewery* Disable memory pooling when running in valgrind
2012-02-28  Bryan Drewery* Fix build failure on older gcc
2012-02-28  Bryan Drewery* Clear old SUFFIXES before adding new
2012-02-28  Bryan Drewery* Improve make portability
2012-02-28  Bryan Drewery* Ensure gmake is installed for 'make test'
2012-02-28  Bryan Drewery* Ignore buildbot directory
2012-02-28  Bryan Drewery* Add BSDMakefile for BSD systems as GNU Make is required
2012-02-28  Bryan Drewery* Rename 'make check' to 'make test'
2012-02-28  Bryan Drewery* Inline the dependency checking to avoid depcomp
2012-02-28  Bryan Drewery* Avoid needing `basename`
2012-02-28  Bryan Drewery* Don't auto enable caching in configure
2012-02-20  Bryan Drewery* Add Cref copy constructor back as some older gcc...
2012-02-20  Bryan Drewery* Compile UnitRunner with the CPPUNIT_CFLAGS to fix...
2012-02-20  Bryan Drewery* Only enable C++11 features on gcc 4.6 and higher
2012-02-20  Bryan Drewery* Make C++11 features optional dependent on __GXX_EXPER...
2012-02-19  Bryan Drewery* Use AS_HELP_STRING for cppunit
2011-12-27  Bryan Drewery* Cleanup HashTable including / forward declarations
2011-12-27  Bryan Drewery* Only allocate an ArrayRef if needed
2011-12-25  Bryan Drewery* Support allocator in String
2011-12-25  Bryan Drewery* Use std::allocator for ReferenceCountedArray allocating
2011-12-25  Bryan Drewery* Fix memory leak (FILE*) when mmap() not available
2011-12-25  Bryan Drewery* Cleanup forward declarations
2011-12-25  Bryan Drewery* Remove unneeded build tools/checks
2011-12-24  Bryan Drewery* Fix ReferenceCountedArrayBase not being initialized...
2011-12-23  Bryan Drewery* Check for g++4.6,4.5,4.4
2011-12-20  Bryan Drewery* Use delete to block copying
2011-12-20  Bryan Drewery* Add explicit operator bool() (C++11)
2011-12-18  Bryan Drewery* Add missing operator=() and move constructor for...
2011-12-17  Bryan Drewery* Doc cleanup
2011-12-17  Bryan Drewery* Remove Cref copy constructor
2011-12-17  Bryan Drewery* Don't use copy-and-swap for ReferenceCountedArray...
2011-12-17  Bryan Drewery* Remove the need for a temporary and allow for optimiz...
2011-12-17  Bryan Drewery* DRY List operations
2011-12-17  Bryan Drewery* Rename List::Node::ptr to List::Node::item to better...
2011-12-17  Bryan Drewery* Support initializer_list constructor and assignments
2011-12-17  Bryan Drewery* Rename HashTable::list -> _list
2011-12-17  Bryan Drewery* Use auto to cleanup syntax
2011-12-17  Bryan Drewery* This length should be const
2011-12-17  Bryan Drewery* Implement move constructors from C++0x
2011-12-17  Bryan Drewery* Build in C++0x standard
2011-12-17  Bryan Drewery* Only need to cleanse if rcount==1
2011-12-17  Bryan Drewery* Use copy-and-swap idiom for assignment operators
2011-12-16  Bryan Drewery* Allow chaining ReferenceCountedArray.operator=()
2011-12-16  Bryan Drewery* Fix clang compiling by disabling -fno-elide-construct...
2011-12-16  Bryan Drewery* Cleanup some documentation
2011-12-16  Bryan Drewery* Utilize npos in more places
2011-12-16  Bryan Drewery* Array uses the STL iterators in ReferenceCountedArray now
2011-12-16  Bryan Drewery* Fix duplicated npos definition by using a real static...
2011-12-16  Bryan Drewery* Ignore kdevelop files
2011-12-15  Bryan Drewery* Fix invalid call to 'ar'
2011-12-15  Bryan Drewery* Remove unneeded configure options
2011-12-15  Bryan Drewery* CLang compile fixes
2011-11-27  Bryan Drewery* Add README
2011-11-17  Bryan Drewery* Implement reverse iterators and update documentation
2011-11-16  Bryan Drewery* Add mutable begin()/end()/mdata() to ReferenceCounted...
2011-11-16  Bryan Drewery* Fix cppunit library including on ubuntu
2011-11-16  Bryan Drewery* Use proper namespace for ptrdiff_t
2011-07-04  Bryan Drewery* Move base 64 charset into header so it can be shared
2011-07-03  Bryan Drewery* Make charset optional for b64{enc,dec}_buf
2011-07-02  Bryan Drewery* Update documentation
2011-05-19  Bryan Drewery* Ignore configure.lineno (dash doesnt support LINENO)
2011-05-19  Bryan Drewery* Run autoconf 2.67
2011-04-09  Bryan Drewery* Add option to Array::join() to quote every element
2011-04-09  Bryan Drewery* Add String::rfind() and ReferenceCountedArray::rfind()
2011-04-09  Bryan Drewery* Make String::printf a static which returns a new...
2010-08-26  Bryan Drewery* Fixup int/size_t misuse and use static_cast<> where...
2010-08-22  Bryan Drewery* Comment fix
2010-08-21  Bryan Drewery* Fix unit test crash
2010-08-18  Bryan Drewery* Cache hash() results for ReferenceCountedArray
2010-08-17  Bryan Drewery* Rename Stream::gets() to Stream::read() to avoid...
2010-08-14  Bryan Drewery* Fix documentation
2010-06-25  Bryan Drewery* Add more Stream::writeFile() unit tests and switch...
2010-06-25  Bryan Drewery* Verify writeFile result in unit tests
2010-06-04  Bryan Drewery* Remove default -j4 and move to MAKEJOBS
2010-05-16  Bryan Drewery* Fix warnings in List::Node due to -Weffc++
2010-05-16  Bryan Drewery* First naive implementation of String::subst
2010-05-16  Bryan Drewery* Fix bad unit test
2010-03-23  Bryan Drewery* Add ReferenceCountedArray constructor (size_t, value_...
2010-03-23  Bryan Drewery* Add HashTable::keys() and HashTable::values()
2010-03-23  Bryan Drewery* Fix ReferenceCountedArray::resize() doubling the...
2010-03-16  Bryan Drewery* Only use g++ 4 options if using g++ 4.
2010-03-16  Bryan Drewery* Run autoconf 2.6.3
2010-03-13  Bryan Drewery* Add additional String::compare() tests
2010-03-13  Bryan Drewery* Don't compile Thread for now
2010-03-13  Bryan Drewery* Raise reference from uint8_t to int to allow more...
2010-03-13  Bryan Drewery* Pre-construct 1 space string for comparing to delim
next