7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 22:25:30 +00:00

Cleanup: Replace C-only deprecated headers

This replaces headers deprecated by C++14 with their equivalent
replacement
This commit is contained in:
Seth Hillbrand 2019-12-05 06:03:15 -08:00
parent a2edf9c442
commit 4d2e953f42
58 changed files with 114 additions and 115 deletions

View File

@ -30,9 +30,9 @@
#ifndef _3D_FASTMATH_H
#define _3D_FASTMATH_H
#include <string.h>
#include <stdint.h>
#include <cmath>
#include <cstdint>
#include <cstring>
// Define this flag to use fast math optimizations

View File

@ -68,10 +68,10 @@
#include "cbvh_pbrt.h"
#include "../../../3d_fastmath.h"
#include <vector>
#include <boost/range/algorithm/partition.hpp>
#include <boost/range/algorithm/nth_element.hpp>
#include <stdlib.h>
#include <boost/range/algorithm/partition.hpp>
#include <cstdlib>
#include <vector>
#include <stack>
#include <wx/debug.h>

View File

@ -71,8 +71,8 @@
#define _CBVH_PBRT_H_
#include "caccelerator.h"
#include <cstdint>
#include <list>
#include <stdint.h>
// Forward Declarations
struct BVHBuildNode;

View File

@ -28,7 +28,7 @@
*/
#include "ccontainer.h"
#include <stdio.h>
#include <cstdio>
CGENERICCONTAINER::CGENERICCONTAINER()
{

View File

@ -32,7 +32,7 @@
#ifndef _MORTONCODES_H_
#define _MORTONCODES_H_
#include <stdint.h>
#include <cstdint>
uint32_t EncodeMorton2( uint32_t x, uint32_t y );
uint32_t EncodeMorton3( uint32_t x, uint32_t y, uint32_t z );

View File

@ -30,7 +30,7 @@
#include "ray.h"
#include "../../3d_fastmath.h"
#include <stdio.h>
#include <cstdio>
#include <wx/debug.h>
#include <cmath>

View File

@ -28,7 +28,7 @@
*/
#include "cobject2d.h"
#include <stdio.h>
#include <cstdio>
COBJECT2D_STATS *COBJECT2D_STATS::s_instance = 0;

View File

@ -31,7 +31,7 @@
#define _COBJECT2D_H_
#include "cbbox2d.h"
#include <string.h>
#include <cstring>
#include <class_board_item.h>

View File

@ -29,7 +29,7 @@
#include "3d_fastmath.h"
#include "cbbox.h"
#include <stdio.h>
#include <cstdio>
#include <wx/debug.h> // For the wxASSERT

View File

@ -28,7 +28,7 @@
*/
#include "cobject.h"
#include <stdio.h>
#include <cstdio>
COBJECT3D_STATS *COBJECT3D_STATS::s_instance = 0;

View File

@ -29,7 +29,7 @@
#include "cimage.h"
#include "buffers_debug.h"
#include <string.h> // For memcpy
#include <cstring> // For memcpy
#include <atomic>
#include <thread>

View File

@ -23,12 +23,12 @@
*/
#include <algorithm> // std::max
#include <cerrno>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <vector>
#include <common.h>

View File

@ -18,8 +18,8 @@
*/
#include "math.h"
#include "dialog_color_picker.h"
#include <cmath>
#define ALPHA_MAX 100 // the max value returned by the alpha (opacity) slider

View File

@ -23,9 +23,9 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <string.h>
#include <richio.h>
#include <cstring>
#include <filter_reader.h>
#include <richio.h>
FILTER_READER::FILTER_READER( LINE_READER& aReader ) :

View File

@ -22,8 +22,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <cmath>
#include <math/vector2d.h>
#include <math.h>
#include <geometry/shape.h>
#include <geometry/shape_arc.h>

View File

@ -45,7 +45,7 @@ unsigned GetRunningMicroSecs()
#elif defined(HAVE_CLOCK_GETTIME)
#include <time.h>
#include <ctime>
unsigned GetRunningMicroSecs()
{

View File

@ -25,11 +25,11 @@
#include <kicad_curl/kicad_curl.h>
#include <kicad_curl/kicad_curl_easy.h>
#include <cstdarg>
#include <cstddef>
#include <exception>
#include <stdarg.h>
#include <sstream>
#include <ki_exception.h> // THROW_IO_ERROR
#include <sstream>
static size_t write_callback( void* contents, size_t size, size_t nmemb, void* userp )

View File

@ -22,7 +22,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <string.h>
#include <cstring>
#include <macros.h>
#include <kiway.h>

View File

@ -3,10 +3,10 @@
*/
/* First off, code is included that follows the "include" declaration
** in the input grammar file. */
#include <stdio.h>
#include <cstdio>
#line 28 "grammar.lemon"
#include <assert.h>
#include <cassert>
#include <libeval/numeric_evaluator.h>
#line 12 "grammar.c"
/* Next is all token values, in a form suitable for use by makeheaders.
@ -236,7 +236,7 @@ struct yyParser {
typedef struct yyParser yyParser;
#ifndef NDEBUG
#include <stdio.h>
#include <cstdio>
static FILE *yyTraceFILE = 0;
static char *yyTracePrompt = 0;
#endif /* NDEBUG */

View File

@ -23,8 +23,8 @@
*/
#include <stdarg.h>
#include <assert.h>
#include <cassert>
#include <cstdarg>
#include <layers_id_colors_and_visibility.h>
#include <class_board.h>

View File

@ -29,7 +29,7 @@
#include <boost/property_tree/ptree.hpp>
#include <assert.h>
#include <cassert>
#include <ptree.h>
typedef PTREE::const_iterator CITER;

View File

@ -13,8 +13,8 @@
http://www.boost.org/LICENSE_1_0.txt)
*/
#include <stdlib.h>
#include <setjmp.h>
#include <csetjmp>
#include <cstdlib>
#include <system/libcontext.h>
#if defined(LIBCONTEXT_PLATFORM_windows_i386) && defined(LIBCONTEXT_COMPILER_gcc)

View File

@ -33,7 +33,7 @@
#include <richio.h>
*/
#include <assert.h>
#include <cassert>
/*

View File

@ -20,9 +20,9 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <ctype.h>
#include <algorithm>
#include <boost/algorithm/string/join.hpp>
#include <cctype>
#include <wx/mstream.h>
#include <wx/filename.h>

View File

@ -27,7 +27,7 @@
#define DLIST_H_
#include <stdio.h> // NULL definition.
#include <cstdio> // NULL definition.
class EDA_ITEM;

Some files were not shown because too many files have changed in this diff Show More