1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Projucer: extend interface DiagnosticMessage::handleRecoverableErrorPCH() to take one more file name param

This commit is contained in:
stefan.graenitz 2016-10-20 15:10:05 +02:00
parent a931b472d0
commit 5e0efc6046

View file

@ -107,7 +107,7 @@ struct DiagnosticReceiver
{
virtual ~DiagnosticReceiver() {}
virtual void handleDiagnostic (const DiagnosticMessage&) = 0;
virtual void handleRecoverableErrorPCH (const DiagnosticMessage& m, String fileName) = 0;
virtual void handleRecoverableErrorPCH (const DiagnosticMessage& m, String pchFileName, String sourceFileName) = 0;
};
//==============================================================================