mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-29 10:25:12 +00:00
Fixed/added namespace ending comments using clang-tidy. NFC
The patch is generated using this command: tools/clang/tools/extra/clang-tidy/tool/run-clang-tidy.py -fix \ -checks=-*,llvm-namespace-comment -header-filter='llvm/.*|clang/.*' \ llvm/lib/ Thanks to Eugene Kosov for the original patch! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240137 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -172,6 +172,6 @@ public:
|
||||
virtual std::unique_ptr<LoadedObjectInfo> clone() const = 0;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -57,6 +57,6 @@ private:
|
||||
AttributeSpecVector AttributeSpecs;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -49,6 +49,6 @@ public:
|
||||
void dump(raw_ostream &OS) const;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -26,6 +26,6 @@ public:
|
||||
~DWARFCompileUnit() override;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -295,6 +295,6 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -58,6 +58,6 @@ private:
|
||||
void clear();
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -65,6 +65,6 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -82,6 +82,6 @@ private:
|
||||
DenseSet<uint32_t> ParsedCUOffsets;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -155,6 +155,6 @@ struct DWARFDebugInfoEntryInlinedChain {
|
||||
const DWARFUnit *U;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -248,6 +248,6 @@ private:
|
||||
LineTableMapTy LineTableMap;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -76,6 +76,6 @@ public:
|
||||
void parse(DataExtractor data);
|
||||
void dump(raw_ostream &OS) const;
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -91,6 +91,6 @@ private:
|
||||
void dumpString(raw_ostream &OS, const DWARFUnit *U) const;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -32,7 +32,7 @@ protected:
|
||||
bool extractImpl(DataExtractor debug_info, uint32_t *offset_ptr) override;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
||||
|
@@ -279,6 +279,6 @@ private:
|
||||
const DWARFDebugInfoEntryMinimal *getSubprogramForAddress(uint64_t Address);
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -54,6 +54,6 @@ private:
|
||||
|
||||
std::unique_ptr<IPDBEnumSymbols> Enumerator;
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -32,6 +32,6 @@ public:
|
||||
virtual void reset() = 0;
|
||||
virtual IPDBDataStream *clone() const = 0;
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -28,6 +28,6 @@ public:
|
||||
virtual void reset() = 0;
|
||||
virtual MyType *clone() const = 0;
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -31,6 +31,6 @@ public:
|
||||
virtual uint32_t getCompilandId() const = 0;
|
||||
virtual bool isStatement() const = 0;
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -56,6 +56,6 @@ public:
|
||||
|
||||
virtual std::unique_ptr<IPDBEnumDataStreams> getDebugStreams() const = 0;
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -32,6 +32,6 @@ public:
|
||||
virtual PDB_Checksum getChecksumType() const = 0;
|
||||
virtual std::unique_ptr<IPDBEnumSymbols> getCompilands() const = 0;
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -55,6 +55,6 @@ private:
|
||||
std::string getFunctionName(uint64_t Address, DINameKind NameKind) const;
|
||||
std::unique_ptr<IPDBSession> Session;
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -33,6 +33,6 @@ raw_ostream &operator<<(raw_ostream &OS, const PDB_UniqueId &Id);
|
||||
raw_ostream &operator<<(raw_ostream &OS, const Variant &Value);
|
||||
raw_ostream &operator<<(raw_ostream &OS, const VersionInfo &Version);
|
||||
raw_ostream &operator<<(raw_ostream &OS, const TagStats &Stats);
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -56,6 +56,6 @@ public:
|
||||
private:
|
||||
bool RequireImpl;
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
|
@@ -34,6 +34,6 @@ public:
|
||||
// FORWARD_SYMBOL_METHOD(getValue)
|
||||
FORWARD_SYMBOL_METHOD(getVirtualAddress)
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLANNOTATION_H
|
||||
|
@@ -36,6 +36,6 @@ public:
|
||||
FORWARD_SYMBOL_METHOD(getSymIndexId)
|
||||
FORWARD_SYMBOL_METHOD(getVirtualAddress)
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLBLOCK_H
|
||||
|
@@ -33,6 +33,6 @@ public:
|
||||
FORWARD_SYMBOL_METHOD(getSourceFileName)
|
||||
FORWARD_SYMBOL_METHOD(getSymIndexId)
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLCOMPILAND_H
|
||||
|
Reference in New Issue
Block a user