Skip to content

Commit 65e0f70

Browse files
starseekercshorler
authored andcommitted
Using newer standards, remove sc_stdbool.h
1 parent d36c0dd commit 65e0f70

File tree

8 files changed

+6
-50
lines changed

8 files changed

+6
-50
lines changed

include/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ install(FILES ${exppp_HDRS}
3232

3333
install(FILES ordered_attrs.h
3434
sc_export.h
35-
sc_stdbool.h
3635
DESTINATION ${INCLUDE_DIR}/stepcode)
3736

3837
install(FILES ${SC_BINARY_DIR}/${INCLUDE_DIR}/sc_cf.h

include/exppp/exppp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef EXPPP_H
22
#define EXPPP_H
33

4-
#include <sc_stdbool.h>
4+
#include <stdbool.h>
55

66
#include <sc_export.h>
77

include/express/basic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
#ifdef HAVE_STDBOOL_H
8383
# include <stdbool.h>
8484
#else
85-
# include <sc_stdbool.h>
85+
# include <stdbool.h>
8686
#endif
8787

8888
#if defined(_MSC_VER) && (_MSC_VER < 1900) && !defined(__cplusplus)

include/sc_stdbool.h

Lines changed: 0 additions & 43 deletions
This file was deleted.

src/exp2cxx/classes_entity.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ N350 ( August 31, 1993 ) of ISO 10303 TC184/SC4/WG7.
1616

1717
#include <sc_memmgr.h>
1818
#include <stdlib.h>
19-
#include <sc_stdbool.h>
19+
#include <stdbool.h>
2020
#include <assert.h>
2121
#include <sc_mkdir.h>
2222
#include "classes.h"

src/exp2python/src/selects_python.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extern int multiple_inheritance;
2323
**************************************************************************/
2424
#include <stdlib.h>
2525
#include "classes.h"
26-
#include <sc_stdbool.h>
26+
#include <stdbool.h>
2727

2828
bool is_python_keyword( char * word );
2929
int isAggregateType( const Type t );

src/exppp/pp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#ifndef PP_H
55
#define PP_H
66

7-
#include <sc_stdbool.h>
7+
#include <stdbool.h>
88
#include <express/symbol.h>
99

1010
extern int indent2; /**< where continuation lines start */

src/exppp/pretty_expr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
#include <stdio.h>
7-
#include <sc_stdbool.h>
7+
#include <stdbool.h>
88
#include <stdlib.h>
99

1010
#include "exppp.h"

0 commit comments

Comments
 (0)