summaryrefslogtreecommitdiff
path: root/Source/Core/CommandLineOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/CommandLineOptions.cs')
-rw-r--r--Source/Core/CommandLineOptions.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index b63b82cc..42bd1406 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -10,7 +10,6 @@ using System.Collections.Specialized;
using System.IO;
using System.Diagnostics;
using System.Diagnostics.Contracts;
-using Cci = System.Compiler;
namespace Microsoft.Boogie {
public class CommandLineOptions {
@@ -1543,6 +1542,7 @@ namespace Microsoft.Boogie {
return Contract.Exists(procsToCheck, s => 0 <= methodFullname.IndexOf(s));
}
+#if CCI
public bool UserWantsToTranslateRoutine(Cci.Method method, string methodFullname) {
Contract.Requires(methodFullname != null);
Contract.Requires(method != null);
@@ -1674,6 +1674,7 @@ namespace Microsoft.Boogie {
}
return null;
}
+#endif
class CommandLineParseState {
public string s;