From 0f3888c4d43e579754cb23688d8897b579c2550c Mon Sep 17 00:00:00 2001 From: Phil Newton Date: Thu, 21 Oct 2021 08:36:40 -0400 Subject: Change header guard names to use `INCLUDED_` prefix Fixes #2049 --- src/select.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/select.h') diff --git a/src/select.h b/src/select.h index ea2e3708..2e5b806a 100644 --- a/src/select.h +++ b/src/select.h @@ -39,8 +39,8 @@ * * @ingroup select */ -#ifndef _SELECT_H -#define _SELECT_H +#ifndef INCLUDED_SELECT_H +#define INCLUDED_SELECT_H #include "utils.h" #include "value.h" @@ -52,4 +52,4 @@ value_t select_command(call_scope_t& args); } // namespace ledger -#endif // _SELECT_H +#endif // INCLUDED_SELECT_H -- cgit v1.2.3