diff options
author | Rustan Leino <leino@microsoft.com> | 2012-01-10 17:15:09 -0800 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2012-01-10 17:15:09 -0800 |
commit | 621753138386f6d476d4c17506c4a7fe0fbba431 (patch) | |
tree | e9e63f3a64eea130829edb7fbadce9220529940d /Util | |
parent | 11a0520f5fc3890358accace772c7a5f26c19c72 (diff) |
Dafny VSX: fixed compilation inconsistency
Diffstat (limited to 'Util')
-rw-r--r-- | Util/VS2010/DafnyExtension/DafnyExtension/DafnyDriver.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Util/VS2010/DafnyExtension/DafnyExtension/DafnyDriver.cs b/Util/VS2010/DafnyExtension/DafnyExtension/DafnyDriver.cs index 31cc412e..f24aee55 100644 --- a/Util/VS2010/DafnyExtension/DafnyExtension/DafnyDriver.cs +++ b/Util/VS2010/DafnyExtension/DafnyExtension/DafnyDriver.cs @@ -167,7 +167,7 @@ namespace DafnyLanguage : base(program) {
this.dd = dd;
}
- protected override void Error(Bpl.IToken tok, string msg, params object[] args) {
+ public override void Error(Bpl.IToken tok, string msg, params object[] args) {
string s = string.Format(msg, args);
dd.RecordError(tok.line - 1, tok.col - 1, ErrorCategory.ResolveError, s);
ErrorCount++;
|