Commit 5a728a06 authored by Max Kellermann's avatar Max Kellermann

fs/AllocatedPath: drop obsolete GCC check

parent 7384ec19
...@@ -77,10 +77,6 @@ AllocatedPath::ChopSeparators() noexcept ...@@ -77,10 +77,6 @@ AllocatedPath::ChopSeparators() noexcept
while (l >= 2 && PathTraitsFS::IsSeparator(p[l - 1])) { while (l >= 2 && PathTraitsFS::IsSeparator(p[l - 1])) {
--l; --l;
#if GCC_CHECK_VERSION(4,7)
value.pop_back(); value.pop_back();
#else
value.erase(value.end() - 1, value.end());
#endif
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment