Skip to content

Commit

Permalink
Fix naming of include guards
Browse files Browse the repository at this point in the history
  • Loading branch information
codeinred committed Apr 27, 2022
1 parent 72b1a07 commit 87cbc79
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion extras/catch_amalgamated.cpp
Expand Up @@ -6,7 +6,7 @@
// SPDX-License-Identifier: BSL-1.0

// Catch v3.0.0-preview.5
// Generated: 2022-04-26 23:30:43.849115
// Generated: 2022-04-26 23:42:11.339089
// ----------------------------------------------------------
// This file is an amalgamation of multiple different files.
// You probably shouldn't edit it directly.
Expand Down
8 changes: 4 additions & 4 deletions extras/catch_amalgamated.hpp
Expand Up @@ -6,7 +6,7 @@
// SPDX-License-Identifier: BSL-1.0

// Catch v3.0.0-preview.5
// Generated: 2022-04-26 23:30:43.831805
// Generated: 2022-04-26 23:42:11.323009
// ----------------------------------------------------------
// This file is an amalgamation of multiple different files.
// You probably shouldn't edit it directly.
Expand Down Expand Up @@ -72,8 +72,8 @@
#ifndef CATCH_CLOCK_HPP_INCLUDED
#define CATCH_CLOCK_HPP_INCLUDED

#ifndef CATCH_CATCH_DLL_PUBLIC
#define CATCH_CATCH_DLL_PUBLIC
#ifndef CATCH_DLL_PUBLIC_HPP_INCLUDED
#define CATCH_DLL_PUBLIC_HPP_INCLUDED

#if defined _WIN32 || defined __CYGWIN__
# ifdef BUILDING_DLL
Expand Down Expand Up @@ -104,7 +104,7 @@
# endif
#endif

#endif // CATCH_CATCH_DLL_PUBLIC
#endif // CATCH_DLL_PUBLIC_INCLUDED
#include <chrono>
#include <ratio>

Expand Down
6 changes: 3 additions & 3 deletions src/catch2/internal/catch_dll_public.hpp
@@ -1,5 +1,5 @@
#ifndef CATCH_CATCH_DLL_PUBLIC
#define CATCH_CATCH_DLL_PUBLIC
#ifndef CATCH_DLL_PUBLIC_HPP_INCLUDED
#define CATCH_DLL_PUBLIC_HPP_INCLUDED

#if defined _WIN32 || defined __CYGWIN__
# ifdef BUILDING_DLL
Expand Down Expand Up @@ -30,4 +30,4 @@
# endif
#endif

#endif // CATCH_CATCH_DLL_PUBLIC
#endif // CATCH_DLL_PUBLIC_INCLUDED

0 comments on commit 87cbc79

Please sign in to comment.