Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-18 | COMMON: Make GPL headers consistent in themselves. | Johannes Schickel | |
2012-03-17 | ALL: Make use of defined() for the preprocessor consistent. | Johannes Schickel | |
This does not change the use of defined for some NDS source files, since they seem to be (based on?) third party code. | |||
2012-03-17 | ALL: Use GCC_ATLEAST(). | Christoph Mallon | |
2011-08-07 | COMMON: Add DisposablePtr<T>, which replaces many repeated implementations ↵ | Christoph Mallon | |
of a dispose flag. | |||
2011-08-07 | COMMON: Remove implicit conversion from ScopedPtr<T> to T*. | Christoph Mallon | |
2011-08-07 | COMMON: Remove superfluous Common:: qualifiers. | Christoph Mallon | |
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2010-11-04 | COMMON: Undo changes to common/ptr.h, remove Common::ScopedPtrC | Max Horn | |
The deletePointer() method approach cannot work, as it is called by the destructor of the base class. A possible correct solution would be to enhance ScopedPtr with a "deleter" object like SharedPtr. But this seems overkill as long as we need it in only one place. svn-id: r54057 | |||
2010-11-03 | Merge from gsoc2010-plugins | Yotam Barnoy | |
This merge was extremely difficult to carry out. It wasn't entirely SVN's fault -- there were several merges to the branch that were done by hand. Please check for any issues and regressions. Also note that the DS makefile was not copied over since the "one at a time" plugin mode currently has too much fragmentation ie. it doesn't work. svn-id: r54051 | |||
2010-09-06 | PLUGINS: used variation of ScopedPtr to clean up load() function | Yotam Barnoy | |
svn-id: r52592 | |||
2010-07-21 | Strip trailing whitespaces in our common code base. | Johannes Schickel | |
svn-id: r51094 | |||
2010-03-20 | - Renamed SharedPtr<T>::Pointer to SharedPtr<T>::PointerType | Johannes Schickel | |
- Introduced ReferenceType to SharedPtr and ScopedPtr svn-id: r48337 | |||
2010-03-20 | Style fixes / cleanup. | Johannes Schickel | |
svn-id: r48336 | |||
2010-03-20 | added ScopedPtr template | Vladimir Menshakov | |
svn-id: r48334 | |||
2010-01-24 | Fix indentation | Jordi Vilalta Prat | |
svn-id: r47499 | |||
2009-10-04 | Change a couple places from 'end of namespace' to 'End of namespace', for ↵ | Max Horn | |
consistency svn-id: r44634 | |||
2009-02-26 | Commit patch #2641592 "Wrong type promotion for SharedPtr" with a slight ↵ | Johannes Schickel | |
formatting change. svn-id: r38901 | |||
2008-12-22 | Fixed indentation and removed whitespaces at the end of line | Jordi Vilalta Prat | |
svn-id: r35481 | |||
2008-09-03 | Minor formatting cleanup. | Johannes Schickel | |
svn-id: r34319 | |||
2008-07-29 | Formatting. | Johannes Schickel | |
svn-id: r33401 | |||
2008-07-29 | Added a reset method to SharedPtr, which allows NULLifying it. | Johannes Schickel | |
svn-id: r33400 | |||
2008-04-07 | Fixed compilation on gcc 2.95. | Johannes Schickel | |
svn-id: r31447 | |||
2008-03-30 | Committed salty-horse's documentation patch. | Johannes Schickel | |
svn-id: r31333 | |||
2008-03-30 | - Added support for custom deletion operator (aka deleter) support for ↵ | Johannes Schickel | |
SharedPtr. - Removed two failing comparison tests of SharedPtr in our test suite (those were not supported according to our documentation anyway) svn-id: r31312 | |||
2008-03-30 | Readded friend statement required by standard conform compilers. Disabled ↵ | Johannes Schickel | |
for gcc 2.95 though. svn-id: r31311 | |||
2008-03-29 | - allow SharedPtr objects with incomplete type | Johannes Schickel | |
- updated documentation accordingly - clarified documentation about comparison operators of SharedPtr svn-id: r31301 | |||
2008-03-29 | Document SharedPtr bool conversion operator; added test cases for it; also ↵ | Max Horn | |
added two test cases for the comparision operators, which currently fail svn-id: r31299 | |||
2008-03-29 | Removed unused friends statement (causes internal compiler error with GCC ↵ | Max Horn | |
2.95 on BeOS) svn-id: r31298 | |||
2008-03-28 | Committed shared pointer implementation of patch #1895703 "COMMON: Managed ↵ | Johannes Schickel | |
List". Unlike the patch on the tracker this commit includes documentation for SharedPtr. svn-id: r31287 |