Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-10 | remove execute permission from many files that should not have it | Oz Linden | |
2014-12-16 | Isolate #pragma clang to __clang__ compilations. | Nat Goodspeed | |
It's very irritating that Visual Studio produces a warning for unrecognized #pragmas, which we then merrily turn into an error -- #pragma is inherently compiler-specific! | |||
2014-10-22 | Remove unit test case that relied on undefined order of evaluation | Oz Linden | |
in: 'cout << a() << b()' the order of evaluation of a() and b() is undefined. | |||
2014-10-22 | merge with more fixes from callum | Oz Linden | |
2014-10-22 | correct merge error in llerror_test.cpp | Oz Linden | |
2014-10-22 | Update to build on Xcode 6.0 (fix unit tests): skip llerror_test test for ↵ | callum_linden | |
now - operator << issues on clang | |||
2014-10-22 | Update to build on Xcode 6.0 (fix unit tests): remove unused functions that ↵ | callum_linden | |
trigger clang warnings | |||
2014-10-22 | added skip to llerror_test of nested logging, noted in todo file | Oz Linden | |
2014-05-17 | MAINT-4009: Final pass refactoring to eliminate memory allocation related to ↵ | Stinson Linden | |
error reporting that is not properly cleaned up. | |||
2014-05-16 | MAINT-4009: First pass refactoring to eliminate memory related to error ↵ | Stinson Linden | |
reporting that is not properly cleaned up. | |||
2013-08-12 | SH-4399 FIX: Interesting: Texture console MB Bound 0/384 and texture queue ↵ | Richard Linden | |
bounces once per second SH-4346 FIX: Interesting: some integer Statistics are displayed as floating point after crossing region boundary made llerrs/infos/etc properly variadic wrt tags LL_INFOS("A", "B", "C") works, for example fixed unit tests remove llsimplestat | |||
2013-03-29 | Update Mac and Windows breakpad builds to latest | Graham Madarasz | |
2012-04-23 | IQA-463: LLError::addRecorder() claims ownership of passed Recorder*. | Nat Goodspeed | |
That is, when the underlying LLError::Settings object is destroyed -- possibly at termination, possibly on LLError::restoreSettings() -- the passed Recorder* is deleted. There was much existing code that seemed as unaware of this alarming fact as I was myself. Passing to addRecorder() a pointer to a stack object, or to a member of some other object, is just Bad. It might be preferable to make addRecorder() accept std::auto_ptr<Recorder> to make the ownership transfer more explicit -- or even boost::shared_ptr<Recorder> instead, which would allow the caller to either forget or retain the passed Recorder. This preliminary pass retains the Recorder* dumb pointer API, but documents the ownership issue, and eliminates known instances of passing pointers to anything but a standalone heap Recorder subclass object. | |||
2011-02-17 | Autobuild: fix for Mac build using XCode | Merov Linden | |
2010-08-13 | Change license from GPL to LGPL (version 2.1) | Oz Linden | |
2010-06-04 | Fix a long-suffering logging unit test failure, re-enable the test. | Tofu Linden | |
This makes logs look less scary on Linux, in-line with other platforms. | |||
2009-12-03 | Skip logging test that fails on Linux, no idea why | Nat Goodspeed | |
2009-10-16 | DEV-41080 more automated testing love - minor comment fixing. | Adam Moss | |
2009-10-15 | DEV-41354 #includes tidyup. | Adam Moss | |
2009-10-15 | DEV-41354 convert llerror tut test into a llcommon integration test | Adam Moss | |