@@ -126,23 +126,23 @@ extern SC_EXPRESS_EXPORT void ERROR_flush_message_buffer( void );
126126/* Inline functions */
127127/********************/
128128
129- static_inline void ERRORdisable ( Error error ) {
129+ static inline void ERRORdisable ( Error error ) {
130130 if ( error != ERROR_none ) {
131131 error -> enabled = false;
132132 }
133133}
134134
135- static_inline void ERRORenable ( Error error ) {
135+ static inline void ERRORenable ( Error error ) {
136136 if ( error != ERROR_none ) {
137137 error -> enabled = true;
138138 }
139139}
140140
141- static_inline bool ERRORis_enabled ( Error error ) {
141+ static inline bool ERRORis_enabled ( Error error ) {
142142 return error -> enabled ;
143143}
144144
145- static_inline void ERRORbuffer_messages ( bool flag ) {
145+ static inline void ERRORbuffer_messages ( bool flag ) {
146146#if !defined(__MSVC__ ) && !defined(__BORLAND__ )
147147 extern void ERROR_start_message_buffer ( void ),
148148 ERROR_flush_message_buffer ( void );
@@ -155,7 +155,7 @@ static_inline void ERRORbuffer_messages( bool flag ) {
155155 }
156156}
157157
158- static_inline void ERRORflush_messages ( void ) {
158+ static inline void ERRORflush_messages ( void ) {
159159#if !defined(__MSVC__ ) && !defined(__BORLAND__ )
160160 extern void ERROR_start_message_buffer ( void ),
161161 ERROR_flush_message_buffer ( void );
@@ -167,6 +167,7 @@ static_inline void ERRORflush_messages( void ) {
167167 }
168168}
169169
170+
170171/***********************/
171172/* function prototypes */
172173/***********************/
0 commit comments