@@ -75,8 +75,8 @@ class XMLGenerator
75
75
void write (FunctionInfo const & I);
76
76
void write (EnumInfo const & I);
77
77
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);
80
80
void write (std::vector<EnumInfo> const & v);
81
81
void write (std::vector<TypedefInfo> const & v);
82
82
@@ -328,7 +328,7 @@ write(
328
328
void
329
329
XMLGenerator::
330
330
write (
331
- mrdox:: FunctionOverloads const & fns)
331
+ FunctionOverloads const & fns)
332
332
{
333
333
for (auto const & fn : fns)
334
334
write (fn);
@@ -337,7 +337,7 @@ write(
337
337
void
338
338
XMLGenerator::
339
339
write (
340
- mrdox:: FunctionList const & fnList)
340
+ FunctionList const & fnList)
341
341
{
342
342
for (auto const & fns : fnList)
343
343
write (fns);
@@ -401,43 +401,31 @@ char const*
401
401
XMLGenerator::
402
402
Format = " xml" ;
403
403
404
- } // doc
405
- } // clang
406
-
407
404
// ------------------------------------------------
408
405
409
- namespace mrdox {
410
-
411
406
llvm::Expected<llvm::Twine>
412
407
renderXML (
413
408
llvm::StringRef path)
414
409
{
415
410
return llvm::Twine ();
416
411
}
417
412
418
- } // mrdox
419
-
420
413
// ------------------------------------------------
421
414
422
- using namespace llvm ;
423
-
424
- namespace clang {
425
- namespace doc {
426
-
427
415
static
428
- clang::doc::GeneratorRegistry::Add<
429
- clang::doc::XMLGenerator>
416
+ GeneratorRegistry::Add<XMLGenerator>
430
417
xmlGenerator (
431
- clang::doc:: XMLGenerator::Format,
418
+ XMLGenerator::Format,
432
419
" Generator for XML output." );
433
420
434
421
// This anchor is used to force the linker
435
422
// to link in the generated object file and
436
423
// thus register the generator.
437
424
volatile int XMLGeneratorAnchorSource = 0 ;
438
425
439
- }
440
- }
426
+ using namespace llvm ;
427
+ } // doc
428
+ } // clang
441
429
442
430
void
443
431
force_xml_generator_linkage ()
0 commit comments