search for: my_svn

Displaying 1 result from an estimated 1 matches for "my_svn".

Did you mean: my_s
2015 Oct 08
2
llvm:cl::parser subclasses final in 3.7?
...er subclasses are now final? We had been doing: struct MaxThreadsParser : public llvm::cl::parser<unsigned> { bool parse(llvm::cl::Option &O, llvm::StringRef ArgName, llvm::StringRef Arg, unsigned &Val); }; But that's now causing: In file included from /home/lak/my_svn/llvm-carte/llvm-3.7.0/tools/carte++/tools/ir2v/ThreadSupport.cpp:1: /home/lak/my_svn/llvm-carte/llvm-3.7.0/tools/carte++/tools/ir2v/ThreadSupport.h:12:34: error: base 'parser' is marked 'final' struct MaxThreadsParser : public llvm::cl::parser<unsigned> { What's the...