diff options
author | Spartan322 <Megacake1234@gmail.com> | 2024-08-03 04:04:39 +0200 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-08-03 04:04:39 +0200 |
commit | d37af8122b541f1220806cb9323be83e6f9e4141 (patch) | |
tree | f1d15e8679aac0bb4b62935cbce534a75c898323 /src/openvic-dataloader/detail/Convert.hpp | |
parent | f754eb93d8d4a2f3963f1321ad8e248f24dd6249 (diff) |
Remove pointless append in conversionclean/useless-append
Diffstat (limited to 'src/openvic-dataloader/detail/Convert.hpp')
-rw-r--r-- | src/openvic-dataloader/detail/Convert.hpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/openvic-dataloader/detail/Convert.hpp b/src/openvic-dataloader/detail/Convert.hpp index 6f8f279..e346185 100644 --- a/src/openvic-dataloader/detail/Convert.hpp +++ b/src/openvic-dataloader/detail/Convert.hpp @@ -483,7 +483,6 @@ namespace ovdl::convert { last_it = reader.position(); } if (last_it != begin) { - result.append(last_it, reader.position()); return; } break; @@ -537,7 +536,6 @@ namespace ovdl::convert { last_it = reader.position(); } if (last_it != begin) { - result.append(last_it, reader.position()); return; } break; @@ -589,7 +587,6 @@ namespace ovdl::convert { last_it = reader.position(); } if (last_it != begin) { - result.append(last_it, reader.position()); return; } } |