This project is mirrored from https://git.alchemyviewer.org/alchemy/alchemy-next.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
- Nov 14, 2014
-
-
Nat Goodspeed authored
-
Nat Goodspeed authored
This is an attempt to diagnose a generate_breakpad_symbols.py exception on a Yosemite TC build host.
-
Nat Goodspeed authored
clang correctly notes that such tests add nothing to the runtime behavior of a program. Unfortunately, clang notes that in the form of a compile error.
-
Nat Goodspeed authored
The "death to the GPU table" change has commented out the only references to the GPU_TABLE_FILENAME constant, and Xcode 6.x regards that as an error.
-
Nat Goodspeed authored
Hopefully this is temporary until we figure out the real problem!
-
Nat Goodspeed authored
Build 296787 of 3p-update-curl includes the latest tip of 3p-curl.
-
- Nov 13, 2014
-
-
obscurestar authored
-
- Nov 12, 2014
-
-
Nat Goodspeed authored
Not sure at what point the redundancy was introduced, but it seems clear we only want to run performance analysis once per shutdown.
-
- Nov 10, 2014
-
-
Nat Goodspeed authored
'raisef' is not a Python statement.
-
Oz Linden authored
-
Oz Linden authored
-
- Oct 29, 2014
- Oct 28, 2014
- Oct 27, 2014
-
-
callum_linden authored
-
callum_linden authored
-
Oz Linden authored
-
- Oct 24, 2014
-
-
Oz Linden authored
-
Oz Linden authored
-
Oz Linden authored
-
Nat Goodspeed authored
-
Oz Linden authored
-
- Oct 23, 2014
-
-
Nat Goodspeed authored
The new TUT library build eliminates the ambiguity about ensure_equals(const char*, ...) versus ensure_equals(const std::string&, ...). Now it's all based on const std::string&. Remove pointless const char* overloads and ambiguous forwarding templates. With clang in Xcode 6, any new datatypes we intend to use with ensure_equals() must have operator<<(std::ostream&, datatype) declared BEFORE lltut.h #includes tut.hpp. Reorder code in certain test source files to guarantee that visibility.
-
callum_linden authored
-
callum_linden authored
-
Nat Goodspeed authored
lltut.h declares a number of ensure_equals() overloads for various data types, notably the types supported by LLSD. We expect these to be called by tut code. But the tut code in question is in a template in tut.hpp -- which was #included BEFORE the overloads were declared. Previous C++ compilers have evidently made multiple passes, collecting the relevant overloads before attempting to compile the template bodies. clang does not, complaining that the overloads must be declared before the tut.hpp template code that references them. Reordering parts of lltut.h seems to address that problem. For similar reasons, test programs that use StringVec.h and its operator<<() must #include StringVec.h before lltut.h. Add ensure_equals(const std::string&, const LLSD::Binary&, const LLSD::Binary&) overload. The sloppy mix of (const char*, ...) and (const std::string&, ...) overloads bothers me, since for many of those ... types we seem to have to duplicate them.
-
callum_linden authored
- Oct 22, 2014
-
-
Oz Linden authored
-
Oz Linden authored
in: 'cout << a() << b()' the order of evaluation of a() and b() is undefined.
-
Oz Linden authored
-
callum_linden authored
Update to build on Xcode 6.0 (fix unit tests): comment out failing unit test in llsd_new_tut.cpp to let the build proceed - will fix later
-