Ensure portability/Windows.h is included before OpenSSL headers
[folly.git] / folly / sorted_vector_types.h
index 6809dde7793fb1fa24f323eb67ff8b970681d78a..f7b0293badd28f281ea184861287efeb0f4a1663 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -281,7 +281,7 @@ public:
   }
 
   size_type erase(const key_type& key) {
-    iterator it = lower_bound(key);
+    iterator it = find(key);
     if (it == end()) {
       return 0;
     }