mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 16:40:38 +08:00
706a8765417ce3c0c1511e1614c8c26f550bbc94
- 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
Ceres Solver - A non-linear least squares minimizer
Please see ceres-solver.org for more information.
WARNING - Do not make GitHub pull requests!
Ceres development happens on Gerrit, including both repository hosting and code reviews. The GitHub Repository is a continuously updated mirror which is primarily meant for issue tracking. Please see our Contributing to Ceres Guide for more details.
The upstream Gerrit repository is
https://ceres-solver.googlesource.com/ceres-solver
Description
Languages
C++
94.4%
CMake
3.8%
Python
0.8%
C
0.5%
Starlark
0.4%