Skip to content

Commit 3d32024

Browse files
committed
tidy up namespacing
1 parent 0b5cfe3 commit 3d32024

9 files changed

+50
-114
lines changed

include/mrdox/mrdox.hpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@
1616
#include <llvm/ADT/Twine.h>
1717
#include "llvm/Support/Error.h"
1818

19-
namespace mrdox {
19+
namespace clang {
20+
namespace doc {
2021

2122
llvm::Expected<llvm::Twine>
2223
renderXML(
2324
llvm::StringRef path);
2425

25-
} // mrdox
26+
} // doc
27+
} // clang
2628

2729
#endif

source/lib/Asciidoc.h

-54
This file was deleted.

source/lib/AsciidocGenerator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ void
363363
listFunctions(
364364
ClangDocContext const& CDCtx,
365365
llvm::StringRef label,
366-
mrdox::FunctionList const& v,
366+
FunctionList const& v,
367367
llvm::raw_ostream& os)
368368
{
369369
if(v.empty())

source/lib/Functions.cpp

+16-13
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,26 @@
1313
#include "Reduce.h"
1414
#include "Representation.h"
1515

16+
namespace clang {
17+
namespace doc {
18+
1619
// we assume that there are 4 access controls
1720
static_assert(
18-
clang::AccessSpecifier::AS_none >
19-
clang::AccessSpecifier::AS_private);
21+
AccessSpecifier::AS_none >
22+
AccessSpecifier::AS_private);
2023
static_assert(
21-
clang::AccessSpecifier::AS_none >
22-
clang::AccessSpecifier::AS_protected);
24+
AccessSpecifier::AS_none >
25+
AccessSpecifier::AS_protected);
2326
static_assert(
24-
clang::AccessSpecifier::AS_none >
25-
clang::AccessSpecifier::AS_public);
26-
27-
namespace mrdox {
27+
AccessSpecifier::AS_none >
28+
AccessSpecifier::AS_public);
2829

2930
//------------------------------------------------
3031

3132
void
3233
FunctionOverloads::
3334
insert(
34-
clang::doc::FunctionInfo I)
35+
FunctionInfo I)
3536
{
3637
assert(I.Name == name);
3738
v_.emplace_back(std::move(I));
@@ -42,13 +43,13 @@ FunctionOverloads::
4243
merge(
4344
FunctionOverloads&& other)
4445
{
45-
clang::doc::reduceChildren(
46+
reduceChildren(
4647
v_, std::move(other.v_));
4748
}
4849

4950
FunctionOverloads::
5051
FunctionOverloads(
51-
clang::doc::FunctionInfo I)
52+
FunctionInfo I)
5253
: name(I.Name)
5354
{
5455
v_.emplace_back(std::move(I));
@@ -59,7 +60,7 @@ FunctionOverloads(
5960
void
6061
FunctionList::
6162
insert(
62-
clang::doc::FunctionInfo I)
63+
FunctionInfo I)
6364
{
6465
//assert(I.Access == access);
6566
auto it = find(I.Name);
@@ -105,4 +106,6 @@ find(
105106
return it;
106107
}
107108

108-
} // mrdox
109+
} // doc
110+
} // clang
111+

source/lib/Functions.h

+8-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
#include <clang/Basic/Specifiers.h>
1717
#include <vector>
1818

19-
namespace mrdox {
19+
namespace clang {
20+
namespace doc {
2021

2122
//------------------------------------------------
2223

@@ -61,20 +62,20 @@ class List
6162
/** A list of overloads for a function.
6263
*/
6364
struct FunctionOverloads
64-
: List<clang::doc::FunctionInfo>
65+
: List<FunctionInfo>
6566
{
6667
/// The name of the function.
6768
UnqualifiedName name;
6869

69-
void insert(clang::doc::FunctionInfo I);
70+
void insert(FunctionInfo I);
7071
void merge(FunctionOverloads&& other);
7172

7273
FunctionOverloads(
7374
FunctionOverloads&&) noexcept = default;
7475
FunctionOverloads& operator=(
7576
FunctionOverloads&&) noexcept = default;
7677
FunctionOverloads(
77-
clang::doc::FunctionInfo I);
78+
FunctionInfo I);
7879
};
7980

8081
//------------------------------------------------
@@ -86,7 +87,7 @@ struct FunctionList
8687
{
8788
clang::AccessSpecifier access;
8889

89-
void insert(clang::doc::FunctionInfo I);
90+
void insert(FunctionInfo I);
9091
void merge(FunctionList&& other);
9192

9293
FunctionList(
@@ -104,6 +105,7 @@ struct FunctionList
104105

105106
//------------------------------------------------
106107

107-
} // mrdox
108+
} // doc
109+
} // clang
108110

109111
#endif

source/lib/Representation.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ struct ScopeChildren
172172
// this general for all possible container types reduces code complexity.
173173
std::vector<Reference> Namespaces;
174174
std::vector<Reference> Records;
175-
mrdox::FunctionList functions;
175+
FunctionList functions;
176176
std::vector<EnumInfo> Enums;
177177
std::vector<TypedefInfo> Typedefs;
178178

source/lib/Types.h

+5-10
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,21 @@
1313
#define MRDOX_TYPES_HPP
1414

1515
#include <llvm/ADT/SmallString.h>
16+
#include <vector>
1617

1718
namespace clang {
1819
namespace doc {
19-
struct FunctionInfo;
20-
} // doc
21-
} // clang
22-
23-
//------------------------------------------------
2420

25-
namespace mrdox {
26-
27-
namespace doc = clang::doc;
21+
struct FunctionInfo;
2822

2923
/// The string used for unqualified names
3024
using UnqualifiedName = llvm::SmallString<16>;
3125

3226
/// A list of zero or more functions
33-
using FunctionInfos = std::vector<doc::FunctionInfo>;
27+
using FunctionInfos = std::vector<FunctionInfo>;
3428

35-
} // mrdox
29+
} // doc
30+
} // clang
3631

3732
#endif
3833

source/lib/XMLGenerator.cpp

+9-21
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ class XMLGenerator
7575
void write(FunctionInfo const& I);
7676
void write(EnumInfo const& I);
7777
void write(TypedefInfo const& I);
78-
void write(mrdox::FunctionOverloads const& fns);
79-
void write(mrdox::FunctionList const& fnList);
78+
void write(FunctionOverloads const& fns);
79+
void write(FunctionList const& fnList);
8080
void write(std::vector<EnumInfo> const& v);
8181
void write(std::vector<TypedefInfo> const& v);
8282

@@ -328,7 +328,7 @@ write(
328328
void
329329
XMLGenerator::
330330
write(
331-
mrdox::FunctionOverloads const& fns)
331+
FunctionOverloads const& fns)
332332
{
333333
for(auto const& fn : fns)
334334
write(fn);
@@ -337,7 +337,7 @@ write(
337337
void
338338
XMLGenerator::
339339
write(
340-
mrdox::FunctionList const& fnList)
340+
FunctionList const& fnList)
341341
{
342342
for(auto const& fns : fnList)
343343
write(fns);
@@ -401,43 +401,31 @@ char const*
401401
XMLGenerator::
402402
Format = "xml";
403403

404-
} // doc
405-
} // clang
406-
407404
//------------------------------------------------
408405

409-
namespace mrdox {
410-
411406
llvm::Expected<llvm::Twine>
412407
renderXML(
413408
llvm::StringRef path)
414409
{
415410
return llvm::Twine();
416411
}
417412

418-
} // mrdox
419-
420413
//------------------------------------------------
421414

422-
using namespace llvm;
423-
424-
namespace clang {
425-
namespace doc {
426-
427415
static
428-
clang::doc::GeneratorRegistry::Add<
429-
clang::doc::XMLGenerator>
416+
GeneratorRegistry::Add<XMLGenerator>
430417
xmlGenerator(
431-
clang::doc::XMLGenerator::Format,
418+
XMLGenerator::Format,
432419
"Generator for XML output.");
433420

434421
// This anchor is used to force the linker
435422
// to link in the generated object file and
436423
// thus register the generator.
437424
volatile int XMLGeneratorAnchorSource = 0;
438425

439-
}
440-
}
426+
using namespace llvm;
427+
} // doc
428+
} // clang
441429

442430
void
443431
force_xml_generator_linkage()

source/tests/test_main.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@
2222
// and a .xml file containing the expected output
2323
// of the XML generator, which must match exactly.
2424

25-
// Our namespace insulates us from any unexpected
26-
// declarations thrown in the global namespace.
27-
namespace mrdox {
25+
namespace clang {
26+
namespace doc {
2827

2928
int
3029
do_main(int argc, const char** argv)
@@ -94,17 +93,18 @@ do_main(int argc, const char** argv)
9493
}
9594
expectedXml = xmlResult->get()->getBuffer();
9695

97-
auto const result = mrdox::renderXML(cppPath);
96+
auto const result = renderXML(cppPath);
9897

9998
}
10099

101100
return EXIT_SUCCESS;
102101
}
103102

104-
} // mrdox
103+
} // doc
104+
} // clang
105105

106106
int
107107
main(int argc, const char** argv)
108108
{
109-
return mrdox::do_main(argc, argv);
109+
return clang::doc::do_main(argc, argv);
110110
}

0 commit comments

Comments
 (0)