diff options
Diffstat (limited to 'gdbsupport/gdb_unique_ptr.h')
-rw-r--r-- | gdbsupport/gdb_unique_ptr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdbsupport/gdb_unique_ptr.h b/gdbsupport/gdb_unique_ptr.h index 19b1581..a40e1b1 100644 --- a/gdbsupport/gdb_unique_ptr.h +++ b/gdbsupport/gdb_unique_ptr.h @@ -17,8 +17,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_GDB_UNIQUE_PTR_H -#define COMMON_GDB_UNIQUE_PTR_H +#ifndef GDBSUPPORT_GDB_UNIQUE_PTR_H +#define GDBSUPPORT_GDB_UNIQUE_PTR_H #include <memory> #include <string> @@ -93,4 +93,4 @@ operator+ (const std::string &lhs, const gdb::unique_xmalloc_ptr<char> &rhs) return lhs + rhs.get (); } -#endif /* COMMON_GDB_UNIQUE_PTR_H */ +#endif /* GDBSUPPORT_GDB_UNIQUE_PTR_H */ |