Remove `continue` at end of a for-loop.

llvm-svn: 277122
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp
index 97fa471..f460d2b 100644
--- a/lld/ELF/LinkerScript.cpp
+++ b/lld/ELF/LinkerScript.cpp
@@ -186,10 +186,8 @@
     bool RO = (Cmd->Constraint == ConstraintKind::ReadOnly);
     bool RW = (Cmd->Constraint == ConstraintKind::ReadWrite);
 
-    if ((RO && Writable) || (RW && !Writable)) {
+    if ((RO && Writable) || (RW && !Writable))
       Sections.erase(It);
-      continue;
-    }
   }
   return Sections;
 }