We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43af04 commit af1f38cCopy full SHA for af1f38c
clang/lib/APINotes/APINotesYAMLCompiler.cpp
@@ -429,22 +429,6 @@ namespace llvm {
429
}
430
};
431
432
- template <>
433
- struct ScalarTraits<VersionTuple> {
434
- static void output(const VersionTuple &value, void*,
435
- llvm::raw_ostream &out) {
436
- out << value;
437
- }
438
- static StringRef input(StringRef scalar, void*, VersionTuple &value) {
439
- if (value.tryParse(scalar))
440
- return "not a version number in the form XX.YY";
441
-
442
- return StringRef();
443
444
445
- static QuotingType mustQuote(StringRef) { return QuotingType::None; }
446
- };
447
448
template <>
449
struct MappingTraits<Param> {
450
static void mapping(IO &io, Param& p) {
0 commit comments