diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-05-29 17:07:19 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-05-29 17:07:19 -0400 |
| commit | ae152621ade192de3ae6aec7c47dab4487b8244e (patch) | |
| tree | 4279d2093b8cd8fa2b93e4e7166b0661a0eeebf3 /include/framework/DynamicExtension.h | |
| parent | e47410d56c667cda9f8070a929df7a955ce13115 (diff) | |
| download | dynamic-extension-ae152621ade192de3ae6aec7c47dab4487b8244e.tar.gz | |
Framework query bugfixes
Diffstat (limited to 'include/framework/DynamicExtension.h')
| -rw-r--r-- | include/framework/DynamicExtension.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/framework/DynamicExtension.h b/include/framework/DynamicExtension.h index 2dcbf18..4f3a3bc 100644 --- a/include/framework/DynamicExtension.h +++ b/include/framework/DynamicExtension.h @@ -157,7 +157,7 @@ public: // Merge the results together auto result = Q::merge(query_results); - for (size_t i=0; i<query_results.size(); i++) { + for (size_t i=0; i<states.size(); i++) { Q::delete_query_state(states[i]); } |