Skip to content

Commit

Permalink
Make library include guards more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Jun 1, 2024
1 parent 1283267 commit 55e9d1e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions include/libassert/assert-catch2.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef ASSERT_CATCH2_HPP
#define ASSERT_CATCH2_HPP
#ifndef LIBASSERT_CATCH2_HPP
#define LIBASSERT_CATCH2_HPP

#define LIBASSERT_PREFIX_ASSERTIONS
#include <libassert/assert.hpp>
Expand Down
4 changes: 2 additions & 2 deletions include/libassert/assert-gtest.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef ASSERT_GTEST_HPP
#define ASSERT_GTEST_HPP
#ifndef LIBASSERT_GTEST_HPP
#define LIBASSERT_GTEST_HPP

#include <gtest/gtest.h>

Expand Down
4 changes: 2 additions & 2 deletions include/libassert/expression-decomposition.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef LIBASSERT_EXPRESSION_DECOMPOSITION
#define LIBASSERT_EXPRESSION_DECOMPOSITION
#ifndef LIBASSERT_EXPRESSION_DECOMPOSITION_HPP
#define LIBASSERT_EXPRESSION_DECOMPOSITION_HPP

#include <string_view>
#include <type_traits>
Expand Down

0 comments on commit 55e9d1e

Please sign in to comment.