Skip to content

Commit 659d19a

Browse files
committed
tidy include guards
1 parent ce2fba1 commit 659d19a

18 files changed

+37
-39
lines changed

source/lib/Bitcode.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// Official repository: https://github.com/cppalliance/mrdox
1010
//
1111

12-
#ifndef MRDOX_SOURCE_BITCODE_HPP
13-
#define MRDOX_SOURCE_BITCODE_HPP
12+
#ifndef MRDOX_LIB_BITCODE_HPP
13+
#define MRDOX_LIB_BITCODE_HPP
1414

1515
#include <mrdox/Platform.hpp>
1616
#include <mrdox/MetadataFwd.hpp>

source/lib/Commands.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// Official repository: https://github.com/cppalliance/mrdox
99
//
1010

11-
#ifndef MRDOX_SOURCE_COMMANDS_HPP
12-
#define MRDOX_SOURCE_COMMANDS_HPP
11+
#ifndef MRDOX_LIB_COMMANDS_HPP
12+
#define MRDOX_LIB_COMMANDS_HPP
1313

1414
#include <mrdox/Platform.hpp>
1515

source/lib/CorpusImpl.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//
2-
// This is a derivative work. originally part of the LLVM Project.
32
// Licensed under the Apache License v2.0 with LLVM Exceptions.
43
// See https://llvm.org/LICENSE.txt for license information.
54
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
@@ -9,8 +8,8 @@
98
// Official repository: https://github.com/cppalliance/mrdox
109
//
1110

12-
#ifndef MRDOX_SOURCE_CORPUSIMPL_HPP
13-
#define MRDOX_SOURCE_CORPUSIMPL_HPP
11+
#ifndef MRDOX_LIB_CORPUSIMPL_HPP
12+
#define MRDOX_LIB_CORPUSIMPL_HPP
1413

1514
#include <mrdox/Platform.hpp>
1615
#include "Bitcode.hpp"

source/lib/FrontendAction.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//
2-
// This is a derivative work. originally part of the LLVM Project.
32
// Licensed under the Apache License v2.0 with LLVM Exceptions.
43
// See https://llvm.org/LICENSE.txt for license information.
54
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
@@ -9,8 +8,8 @@
98
// Official repository: https://github.com/cppalliance/mrdox
109
//
1110

12-
#ifndef MRDOX_SOURCE_FRONTENDACTION_HPP
13-
#define MRDOX_SOURCE_FRONTENDACTION_HPP
11+
#ifndef MRDOX_LIB_FRONTENDACTION_HPP
12+
#define MRDOX_LIB_FRONTENDACTION_HPP
1413

1514
#include <mrdox/Platform.hpp>
1615
#include <clang/Tooling/Execution.h>

source/lib/_adoc/Asciidoc.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// Official repository: https://github.com/cppalliance/mrdox
1010
//
1111

12-
#ifndef MRDOX_SOURCE_ADOC_ASCIIDOC_HPP
13-
#define MRDOX_SOURCE_ADOC_ASCIIDOC_HPP
12+
#ifndef MRDOX_LIB_ADOC_ASCIIDOC_HPP
13+
#define MRDOX_LIB_ADOC_ASCIIDOC_HPP
1414

1515
#include <mrdox/Platform.hpp>
1616
#include <mrdox/Config.hpp>

source/lib/_adoc/PagesBuilder.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// Official repository: https://github.com/cppalliance/mrdox
99
//
1010

11-
#ifndef MRDOX_SOURCE_ADOC_PAGESBUILDER_HPP
12-
#define MRDOX_SOURCE_ADOC_PAGESBUILDER_HPP
11+
#ifndef MRDOX_LIB_ADOC_PAGESBUILDER_HPP
12+
#define MRDOX_LIB_ADOC_PAGESBUILDER_HPP
1313

1414
#include <mrdox/Platform.hpp>
1515
#include <mrdox/Corpus.hpp>

source/lib/_xml/XML.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// Official repository: https://github.com/cppalliance/mrdox
1010
//
1111

12-
#ifndef MRDOX_SOURCE_XML_XML_HPP
13-
#define MRDOX_SOURCE_XML_XML_HPP
12+
#ifndef MRDOX_LIB_XML_XML_HPP
13+
#define MRDOX_LIB_XML_XML_HPP
1414

1515
#include <mrdox/Platform.hpp>
1616
#include <mrdox/Generator.hpp>

source/lib/ast/ASTVisitor.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// Official repository: https://github.com/cppalliance/mrdox
1010
//
1111

12-
#ifndef MRDOX_SOURCE_AST_ASTVISITOR_HPP
13-
#define MRDOX_SOURCE_AST_ASTVISITOR_HPP
12+
#ifndef MRDOX_LIB_AST_ASTVISITOR_HPP
13+
#define MRDOX_LIB_AST_ASTVISITOR_HPP
1414

1515
#include <mrdox/Platform.hpp>
1616
#include <mrdox/Config.hpp>

source/lib/ast/AnyNodeList.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// Official repository: https://github.com/cppalliance/mrdox
99
//
1010

11-
#ifndef MRDOX_SOURCE_AST_ANYNODELIST_HPP
12-
#define MRDOX_SOURCE_AST_ANYNODELIST_HPP
11+
#ifndef MRDOX_LIB_AST_ANYNODELIST_HPP
12+
#define MRDOX_LIB_AST_ANYNODELIST_HPP
1313

1414
#include <mrdox/Platform.hpp>
1515
#include <mrdox/Error.hpp>

source/lib/ast/BitcodeIDs.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// Official repository: https://github.com/cppalliance/mrdox
1010
//
1111

12-
#ifndef MRDOX_SOURCE_AST_BITCODEIDS_HPP
13-
#define MRDOX_SOURCE_AST_BITCODEIDS_HPP
12+
#ifndef MRDOX_LIB_AST_BITCODEIDS_HPP
13+
#define MRDOX_LIB_AST_BITCODEIDS_HPP
1414

1515
#include <mrdox/Platform.hpp>
1616
#include <llvm/Bitstream/BitCodeEnums.h>

0 commit comments

Comments
 (0)