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:
parent
a2edf9c442
commit
4d2e953f42
3d-viewer
3d_fastmath.h
3d_rendering
bitmap2component
common
dialogs
filter_reader.cppgeometry
getrunningmicrosecs.cppkicad_curl
kiway.cpplibeval
lset.cppptree.cppsystem
utf8.cppeeschema
include
libs/sexpr
pagelayout_editor
pcb_calculator/transline
c_microstrip.cppcoax.cppcoplanar.cppmicrostrip.cpprectwaveguide.cppstripline.cpptransline.cpptwistedpair.cpp
pcbnew
class_edge_mod.cppeagle_plugin.cpp
import_gfx
legacy_plugin.cpppcad2kicadpcb_plugin
pcb_parser.cpprouter
swig
plugins/3d/vrml
qa/common/geometry
utils/kicad2step/pcb
@ -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
|
||||
|
@ -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>
|
||||
|
@ -71,8 +71,8 @@
|
||||
#define _CBVH_PBRT_H_
|
||||
|
||||
#include "caccelerator.h"
|
||||
#include <cstdint>
|
||||
#include <list>
|
||||
#include <stdint.h>
|
||||
|
||||
// Forward Declarations
|
||||
struct BVHBuildNode;
|
||||
|
@ -28,7 +28,7 @@
|
||||
*/
|
||||
|
||||
#include "ccontainer.h"
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
|
||||
CGENERICCONTAINER::CGENERICCONTAINER()
|
||||
{
|
||||
|
@ -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 );
|
||||
|
@ -30,7 +30,7 @@
|
||||
|
||||
#include "ray.h"
|
||||
#include "../../3d_fastmath.h"
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#include <wx/debug.h>
|
||||
|
||||
#include <cmath>
|
||||
|
@ -28,7 +28,7 @@
|
||||
*/
|
||||
|
||||
#include "cobject2d.h"
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
|
||||
|
||||
COBJECT2D_STATS *COBJECT2D_STATS::s_instance = 0;
|
||||
|
@ -31,7 +31,7 @@
|
||||
#define _COBJECT2D_H_
|
||||
|
||||
#include "cbbox2d.h"
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
|
||||
#include <class_board_item.h>
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "3d_fastmath.h"
|
||||
|
||||
#include "cbbox.h"
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
#include <wx/debug.h> // For the wxASSERT
|
||||
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
||||
*/
|
||||
|
||||
#include "cobject.h"
|
||||
#include <stdio.h>
|
||||
#include <cstdio>
|
||||
|
||||
|
||||
COBJECT3D_STATS *COBJECT3D_STATS::s_instance = 0;
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
#include "cimage.h"
|
||||
#include "buffers_debug.h"
|
||||
#include <string.h> // For memcpy
|
||||
#include <cstring> // For memcpy
|
||||
|
||||
#include <atomic>
|
||||
#include <thread>
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
||||
|
@ -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 ) :
|
||||
|
@ -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>
|
||||
|
@ -45,7 +45,7 @@ unsigned GetRunningMicroSecs()
|
||||
|
||||
#elif defined(HAVE_CLOCK_GETTIME)
|
||||
|
||||
#include <time.h>
|
||||
#include <ctime>
|
||||
|
||||
unsigned GetRunningMicroSecs()
|
||||
{
|
||||
|
@ -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 )
|
||||
|
@ -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>
|
||||
|
@ -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 */
|
||||
|
@ -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>
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
#include <boost/property_tree/ptree.hpp>
|
||||
|
||||
#include <assert.h>
|
||||
#include <cassert>
|
||||
#include <ptree.h>
|
||||
|
||||
typedef PTREE::const_iterator CITER;
|
||||
|
@ -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)
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include <richio.h>
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <cassert>
|
||||
|
||||
|
||||
/*
|
||||
|
@ -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>
|
||||
|
@ -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
Loading…
Reference in New Issue
Block a user