1
0
forked from 0ad/0ad

Removes unused CONFIG_OMIT_FP config macro forgotten in 0d23e3f333.

This was SVN commit r25520.
This commit is contained in:
Vladislav Belov 2021-05-22 13:18:15 +00:00
parent c73f674055
commit 0812ded348

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2010 Wildfire Games.
/* Copyright (C) 2021 Wildfire Games.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
@ -41,15 +41,6 @@
# define CONFIG_ENABLE_PCH 1 // improve build performance
#endif
// frame pointers
#ifndef CONFIG_OMIT_FP
# ifdef NDEBUG
# define CONFIG_OMIT_FP 1 // improve performance
# else
# define CONFIG_OMIT_FP 0 // enable use of ia32's fast stack walk
# endif
#endif
// try to prevent any exceptions from being thrown - even by the C++
// standard library. useful only for performance tests.
#ifndef CONFIG_DISABLE_EXCEPTIONS