Files
ceres-solver/internal/ceres
Alex Stewart 706a876541 Fix use of va_copy() if compiling with explicit C++ version < C++11.
- va_copy() was defined in the C99 standard, but did not appear in the
  C++ standard until C++11.  If the C++ standard is not specified,
  both GCC & Clang will define va_copy(), even though strictly speaking
  they should not.  However, if the C++ standard is explicitly specified
  to something < C++11 (e.g. -std=c++03) then va_copy() will NOT be
  defined.
- Now, if va_copy() is not defined, we either define our own version
  on non GCC/Clang compilers (as before for MSVC alone), and use the
  internal __va_copy() version on GCC & Clang, which does exist.

Change-Id: I0224f7fa6aae060dee2287782b1cad767c244d3c
2016-01-21 19:30:58 +00:00
..
2014-11-27 09:56:37 +00:00
2015-04-07 14:13:25 -07:00
2015-10-22 18:48:13 +00:00
2015-12-17 13:55:02 -08:00
2015-08-03 12:24:25 -07:00
2015-09-12 15:41:05 -07:00
2015-09-12 15:41:05 -07:00