summaryrefslogtreecommitdiff
path: root/Source/BoogieDriver
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2010-07-06 11:01:13 +0000
committerGravatar wuestholz <unknown>2010-07-06 11:01:13 +0000
commit248453146e3501670929bd312f4da8856850ec5e (patch)
treead6593adb6950e4163007640857cc823fd2ba0de /Source/BoogieDriver
parenta2d05a9f242934499885bb156c258b2f58272e1a (diff)
Boogie: Added an additional parameter 'defines' to the method 'BoogiePL.Parser.Parse'.
Diffstat (limited to 'Source/BoogieDriver')
-rw-r--r--Source/BoogieDriver/BoogieDriver.ssc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/BoogieDriver/BoogieDriver.ssc b/Source/BoogieDriver/BoogieDriver.ssc
index c1bf358e..1923ca49 100644
--- a/Source/BoogieDriver/BoogieDriver.ssc
+++ b/Source/BoogieDriver/BoogieDriver.ssc
@@ -349,7 +349,7 @@ namespace Microsoft.Boogie
Program programSnippet;
int errorCount;
try {
- errorCount = BoogiePL.Parser.Parse(bplFileName, out programSnippet);
+ errorCount = BoogiePL.Parser.Parse(bplFileName, null, out programSnippet);
if (programSnippet == null || errorCount != 0) {
Console.WriteLine("{0} parse errors detected in {1}", errorCount, bplFileName);
okay = false;