mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Add dyn_cast<> support to YAML I/O's IO class
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194655 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -59,7 +59,7 @@ void Input::setDiagHandler(SourceMgr::DiagHandlerTy Handler, void *Ctxt) {
|
||||
SrcMgr.setDiagHandler(Handler, Ctxt);
|
||||
}
|
||||
|
||||
bool Input::outputting() {
|
||||
bool Input::outputting() const {
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -382,7 +382,7 @@ Output::Output(raw_ostream &yout, void *context)
|
||||
Output::~Output() {
|
||||
}
|
||||
|
||||
bool Output::outputting() {
|
||||
bool Output::outputting() const {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user