diff options
Diffstat (limited to 'gdbsupport/underlying.h')
-rw-r--r-- | gdbsupport/underlying.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdbsupport/underlying.h b/gdbsupport/underlying.h index d9c5696..a3e7e3f 100644 --- a/gdbsupport/underlying.h +++ b/gdbsupport/underlying.h @@ -15,8 +15,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMMON_UNDERLYING_H -#define COMMON_UNDERLYING_H +#ifndef GDBSUPPORT_UNDERLYING_H +#define GDBSUPPORT_UNDERLYING_H #include <type_traits> @@ -29,4 +29,4 @@ to_underlying (E val) noexcept return static_cast<typename std::underlying_type<E>::type> (val); } -#endif +#endif /* GDBSUPPORT_UNDERLYING_H */ |