- Aug 19, 2015
-
-
Rider Linden authored
-
Rider Linden authored
-
Rider Linden authored
-
Rider Linden authored
-
- Aug 18, 2015
-
-
Rider Linden authored
-
Rider Linden authored
-
Rider Linden authored
-
Nat Goodspeed authored
Recent cmake versions are unhappy with embedding spaces in the LL_TEST_ADDITIONAL_LIBRARIES property. Using semicolons to delimit libraries seems to make it better.
-
Nat Goodspeed authored
The problem was that class-static LLUrlEntryParcel::sRegionHost was being initialized by copying class-static LLHost::invalid. Naturally, these two statics are initialized in different source files. Since C++ makes no promises about the relative order in which objects in different object files are initialized, it seems we hit a case in which we were trying to initialize sRegionHost by copying a completely uninitialized LLHost::invalid. In general we might attempt to address such cross-translation-unit issues by introducing an LLSingleton. But in this particular case, the punch line is that LLHost::invalid is explicitly constructed identically to a default-constructed LLHost! In other words, LLHost::invalid provides nothing we couldn't get from LLHost(). All it gives us is an opportunity for glitches such as the above. Remove LLHost::invalid and all references, replacing with LLHost().
-
Rider Linden authored
-
Rider Linden authored
See if this helps the linux build. If not change will be needed to viewer-update-llapearance-utility repo
-
- Aug 17, 2015
-
-
Rider Linden authored
-
Rider Linden authored
-
rider authored
-
rider authored
-
Rider Linden authored
-
Rider Linden authored
-
- Aug 15, 2015
-
-
rider authored
-
- Aug 14, 2015
-
-
Rider Linden authored
-
Rider Linden authored
Removed HTTPSender, HTTPNullSender, HTTPCapSender. Moved UntrustedMessageCap storage into LLHost Added boost libraries to PROJECT_x_TEST linkage.
-
- Aug 12, 2015
-
-
Rider Linden authored
MAINT-5500: Finish converting the AIS responders to the new coroutine model, Cleaned up dead an unused code. MAINT-4952: Added COPY and MOVE methods to Core:Http adapter
-
- Aug 11, 2015
-
-
Rider Linden authored
-
Rider Linden authored
-
- Aug 03, 2015
- Jul 31, 2015
-
-
Rider Linden authored
-
rider authored
-
Rider Linden authored
-
- Jul 30, 2015
-
-
Rider Linden authored
Converted All AISv3 commands (except copyLibrary) to coro model.
-
- Jul 28, 2015
-
-
Rider Linden authored
-
Rider Linden authored
-
AndreyL ProductEngine authored
in LLUUID::operator==(LLUUID const &) and LLFolderView::removeSelectedItems()
-
- Jul 24, 2015
-
-
Mnikolenko ProductEngine authored
-
- Jul 23, 2015
-
-
Rider Linden authored
-
Rider Linden authored
-
- Jul 22, 2015
-
-
Rider Linden authored
Removed some commented out code I had missed earlier Moved costing to virtual function in uploadinfo.
-
Rider Linden authored
-
- Jul 20, 2015
-
-
Rider Linden authored
Forgot to remove an unused varable and renamed NewFileResourceUploadInfo to LLNewFileResourceUploadInfo
-
Rider Linden authored
-