libstdc++: Move include guards to start of headers

libstdc++-v3/ChangeLog:

	* include/c_compatibility/complex.h (_GLIBCXX_COMPLEX_H): Move
	include guard to start of the header.
	* include/c_global/ctgmath (_GLIBCXX_CTGMATH): Likewise.
This commit is contained in:
Jonathan Wakely 2024-11-05 12:54:32 +00:00 committed by Jonathan Wakely
parent 1b169ee7e2
commit 6a050a3e65
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

View file

@ -26,6 +26,9 @@
* This is a Standard C++ Library header.
*/
#ifndef _GLIBCXX_COMPLEX_H
#define _GLIBCXX_COMPLEX_H 1
#include <bits/c++config.h>
#if __cplusplus >= 201103L
@ -42,7 +45,4 @@
# endif
#endif
#ifndef _GLIBCXX_COMPLEX_H
#define _GLIBCXX_COMPLEX_H 1
#endif

View file

@ -26,13 +26,13 @@
* This is a Standard C++ Library header.
*/
#ifndef _GLIBCXX_CTGMATH
#define _GLIBCXX_CTGMATH 1
#ifdef _GLIBCXX_SYSHDR
#pragma GCC system_header
#endif
#ifndef _GLIBCXX_CTGMATH
#define _GLIBCXX_CTGMATH 1
#if __cplusplus < 201103L
# include <bits/c++0x_warning.h>
#else