mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-16 12:24:03 +00:00
Add support for a character after a command line option. Like '-Os'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70437 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -45,10 +45,12 @@ TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<double>);
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<float>);
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
|
||||
TEMPLATE_INSTANTIATION(class basic_parser<char>);
|
||||
|
||||
TEMPLATE_INSTANTIATION(class opt<unsigned>);
|
||||
TEMPLATE_INSTANTIATION(class opt<int>);
|
||||
TEMPLATE_INSTANTIATION(class opt<std::string>);
|
||||
TEMPLATE_INSTANTIATION(class opt<char>);
|
||||
TEMPLATE_INSTANTIATION(class opt<bool>);
|
||||
|
||||
void Option::anchor() {}
|
||||
@ -60,6 +62,7 @@ void parser<unsigned>::anchor() {}
|
||||
void parser<double>::anchor() {}
|
||||
void parser<float>::anchor() {}
|
||||
void parser<std::string>::anchor() {}
|
||||
void parser<char>::anchor() {}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
|
Reference in New Issue
Block a user