Skip to content

Tags: a-teammate/code

Tags

0.7.0-alpha

Toggle 0.7.0-alpha's commit message
v0.7.0 Alpha Release

0.6.0-alpha

Toggle 0.6.0-alpha's commit message
v0.6.0 Alpha Release

0.5.0-alpha

Toggle 0.5.0-alpha's commit message
v0.5.0 Alpha Release

0.4.1-alpha

Toggle 0.4.1-alpha's commit message
Update for Pyrimethamine Alpha Edition

0.4.0-alpha

Toggle 0.4.0-alpha's commit message
remove deprecated thread_local workaround

this was introduced bc visual studio didnt support it then, however we just recently updated vs from 2013 to 2015 so we do support natively the c++11 keyword thread_local.

0.3.0-alpha

Toggle 0.3.0-alpha's commit message
update changelog

patch for the 0.3alpha changelog entry

0.2.0-alpha

Toggle 0.2.0-alpha's commit message
Use standard versions of min, max, clamp and swap

Basically, use min/max/swap from std:: and clamp from boost.
(And use proper aliasing via `using ...` import.)

Min and max where inaccurate aliases: The std:: versions take
a single type parameter, while the versions in tools.h take
two; those do not have an effect though, because calling
the std:: versions will render the second parameter useless
again.

Same with clamp; it takes 3 type parameters but uses min/max
internally so these type parameters can never be different.
Clamp was also not using lvals; as a solution we use the
boost::algorithm version.

v0.1-alpha

Toggle v0.1-alpha's commit message
Search libraries in binary folder