diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2024-12-06 13:56:55 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2024-12-06 13:56:55 -0500 |
| commit | e2b81a2d311470d503edae93e68e82791f6bb17c (patch) | |
| tree | eec2a5eba14be2986af39d3fdd5d651e61f8f4b3 /include/framework/DynamicExtension.h | |
| parent | 9fe305c7d28e993e55c55427f377ae7e3251ea4f (diff) | |
| download | dynamic-extension-e2b81a2d311470d503edae93e68e82791f6bb17c.tar.gz | |
Warning fixes
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 16cbb0e..5a95679 100644 --- a/include/framework/DynamicExtension.h +++ b/include/framework/DynamicExtension.h @@ -565,7 +565,7 @@ private: vers->reconstruction(args->merges[0]); } } else { - for (ssize_t i = 0; i < args->merges.size(); i++) { + for (size_t i = 0; i < args->merges.size(); i++) { vers->reconstruction(args->merges[i].target, args->merges[i].sources[0]); } |