summaryrefslogtreecommitdiff
path: root/src/preprocessing/preprocessing_pass_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/preprocessing_pass_context.h')
-rw-r--r--src/preprocessing/preprocessing_pass_context.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/preprocessing/preprocessing_pass_context.h b/src/preprocessing/preprocessing_pass_context.h
index a14fafb47..722c82f6b 100644
--- a/src/preprocessing/preprocessing_pass_context.h
+++ b/src/preprocessing/preprocessing_pass_context.h
@@ -57,10 +57,7 @@ class PreprocessingPassContext
return d_circuitPropagator;
}
- context::CDHashSet<Node, NodeHashFunction>& getSymsInAssertions()
- {
- return d_symsInAssertions;
- }
+ context::CDHashSet<Node>& getSymsInAssertions() { return d_symsInAssertions; }
void spendResource(Resource r);
@@ -107,7 +104,7 @@ class PreprocessingPassContext
* The (user-context-dependent) set of symbols that occur in at least one
* assertion in the current user context.
*/
- context::CDHashSet<Node, NodeHashFunction> d_symsInAssertions;
+ context::CDHashSet<Node> d_symsInAssertions;
}; // class PreprocessingPassContext
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback