mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 19:00:54 -06:00
Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`. Use `clang-format` version 6.0. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
49 lines
893 B
C++
49 lines
893 B
C++
#include "android.h"
|
|
|
|
#ifndef STL_NONE
|
|
# include <cmath>
|
|
# include <cstdio>
|
|
# ifndef STL_SYSTEM
|
|
# include <exception>
|
|
# include <typeinfo>
|
|
# ifndef STL_STLPORT
|
|
# include <cxxabi.h>
|
|
# endif
|
|
# ifndef STL_GABI
|
|
# include <iostream>
|
|
# include <string>
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
int main()
|
|
{
|
|
#if !defined(STL_NONE)
|
|
// Require -lm implied by linking as C++.
|
|
std::printf("%p\n", static_cast<double (*)(double)>(&std::sin));
|
|
#endif
|
|
#if defined(STL_NONE)
|
|
return 0;
|
|
#elif defined(STL_SYSTEM)
|
|
return 0;
|
|
#else
|
|
try {
|
|
delete (new int);
|
|
} catch (std::exception const& e) {
|
|
# if defined(STL_GABI)
|
|
e.what();
|
|
typeid(e).name();
|
|
# else
|
|
std::cerr << e.what() << std::endl;
|
|
std::cerr << typeid(e).name() << std::endl;
|
|
# endif
|
|
}
|
|
# if defined(STL_GABI)
|
|
return 0;
|
|
# else
|
|
std::string s;
|
|
return static_cast<int>(s.size());
|
|
# endif
|
|
#endif
|
|
}
|