<feed xmlns='http://www.w3.org/2005/Atom'>
<title>viewer.git/indra/test/lltut.h, branch 26.3</title>
<subtitle>Megapahit's fork of the Second Life viewer.
</subtitle>
<id>https://megapahit.org/viewer.git/atom?h=26.3</id>
<link rel='self' href='https://megapahit.org/viewer.git/atom?h=26.3'/>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/'/>
<updated>2025-03-12T16:37:27Z</updated>
<entry>
<title>Try to parallelize xcode builds further and add more headers to PCH to reduce build time</title>
<updated>2025-03-12T16:37:27Z</updated>
<author>
<name>Rye</name>
<email>rye@lindenlab.com</email>
</author>
<published>2024-10-15T05:15:43Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=d915cf17dfb4ddd79830f3ff9fea004ba9d2b61c'/>
<id>urn:sha1:d915cf17dfb4ddd79830f3ff9fea004ba9d2b61c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>#824 Process source files in bulk: replace tabs with spaces, convert CRLF to LF, and trim trailing whitespaces as needed</title>
<updated>2024-04-29T04:56:09Z</updated>
<author>
<name>Andrey Lihatskiy</name>
<email>alihatskiy@productengine.com</email>
</author>
<published>2024-04-29T04:43:28Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=1b68f71348ecf3983b76b40d7940da8377f049b7'/>
<id>urn:sha1:1b68f71348ecf3983b76b40d7940da8377f049b7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove execute permission from many files that should not have it</title>
<updated>2015-11-10T14:48:56Z</updated>
<author>
<name>Oz Linden</name>
<email>oz@lindenlab.com</email>
</author>
<published>2015-11-10T14:48:56Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=c8726aba303bcf1207b730a344536e25491420bc'/>
<id>urn:sha1:c8726aba303bcf1207b730a344536e25491420bc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Wrap #pragma clang in #if __clang__, else VS produces fatal warnings.</title>
<updated>2014-12-05T13:48:10Z</updated>
<author>
<name>Nat Goodspeed</name>
<email>nat@lindenlab.com</email>
</author>
<published>2014-12-05T13:48:10Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=c54d102c8f7f336e3ad2144710e51062b5eeac97'/>
<id>urn:sha1:c54d102c8f7f336e3ad2144710e51062b5eeac97</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bring in new TUT library build. Clean up ensure_equals() overloads.</title>
<updated>2014-10-24T03:23:08Z</updated>
<author>
<name>Nat Goodspeed</name>
<email>nat@lindenlab.com</email>
</author>
<published>2014-10-24T03:23:08Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=918e2b629bd3dadfbe5288c0d72d93bcca1b8cfe'/>
<id>urn:sha1:918e2b629bd3dadfbe5288c0d72d93bcca1b8cfe</id>
<content type='text'>
The new TUT library build eliminates the ambiguity about ensure_equals(const
char*, ...) versus ensure_equals(const std::string&amp;, ...). Now it's all based
on const std::string&amp;. 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&lt;&lt;(std::ostream&amp;, datatype) declared BEFORE lltut.h
#includes tut.hpp. Reorder code in certain test source files to guarantee that
visibility.
</content>
</entry>
<entry>
<title>Fix Xcode 6 compile errors relating to tut::ensure_equals() overloads.</title>
<updated>2014-10-23T15:44:42Z</updated>
<author>
<name>Nat Goodspeed</name>
<email>nat@lindenlab.com</email>
</author>
<published>2014-10-23T15:44:42Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=642c334efa2dbd0bafca5b0dbb11a986cd5ab4a9'/>
<id>urn:sha1:642c334efa2dbd0bafca5b0dbb11a986cd5ab4a9</id>
<content type='text'>
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&lt;&lt;()
must #include StringVec.h before lltut.h.
Add ensure_equals(const std::string&amp;, const LLSD::Binary&amp;, const LLSD::Binary&amp;)
overload. The sloppy mix of (const char*, ...) and (const std::string&amp;, ...)
overloads bothers me, since for many of those ... types we seem to have to
duplicate them.
</content>
</entry>
<entry>
<title>Update to build on Xcode 6.0: turn off warnings about unused functions from clang for tut package</title>
<updated>2014-10-17T23:20:36Z</updated>
<author>
<name>callum_linden</name>
<email>none@none</email>
</author>
<published>2014-10-17T23:20:36Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=d20c719f03939a0e0220429647f5964fe6c8aeb2'/>
<id>urn:sha1:d20c719f03939a0e0220429647f5964fe6c8aeb2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>SH-4061 WIP - fix for build issues on mac, reset the retry policy on success.</title>
<updated>2013-04-17T00:27:49Z</updated>
<author>
<name>Brad Payne (Vir Linden)</name>
<email>vir@lindenlab.com</email>
</author>
<published>2013-04-17T00:27:49Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=e3bad9fb86c3f44ad67488402ce2e46743a2422e'/>
<id>urn:sha1:e3bad9fb86c3f44ad67488402ce2e46743a2422e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Change license from GPL to LGPL (version 2.1)</title>
<updated>2010-08-13T11:24:57Z</updated>
<author>
<name>Oz Linden</name>
<email>oz@lindenlab.com</email>
</author>
<published>2010-08-13T11:24:57Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=06b0d72efa96b6a0ed665f7cd46f358c48929e7b'/>
<id>urn:sha1:06b0d72efa96b6a0ed665f7cd46f358c48929e7b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>merge from latest svn/viewer-2-0 to hg/viewer-2-0</title>
<updated>2009-10-16T23:42:45Z</updated>
<author>
<name>Mark Palange (Mani)</name>
<email>palange@lindenlab.com</email>
</author>
<published>2009-10-16T23:42:45Z</published>
<link rel='alternate' type='text/html' href='https://megapahit.org/viewer.git/commit/?id=3e10fa4d51a23bf6f1ced23e8d90c636d84fa5db'/>
<id>urn:sha1:3e10fa4d51a23bf6f1ced23e8d90c636d84fa5db</id>
<content type='text'>
</content>
</entry>
</feed>
