Index: crypto/p224_unittest.cc |
diff --git a/crypto/p224_unittest.cc b/crypto/p224_unittest.cc |
index c6acfdd67cec4238e3f752d5f9c50ce0175bfca4..ef9e305e943b26f784e01ed87396686b8eb375d1 100644 |
--- a/crypto/p224_unittest.cc |
+++ b/crypto/p224_unittest.cc |
@@ -9,7 +9,8 @@ |
#include "testing/gtest/include/gtest/gtest.h" |
-using namespace crypto; |
+namespace crypto { |
+ |
using p224::Point; |
// kBasePointExternal is the P224 base point in external representation. |
@@ -819,3 +820,5 @@ TEST(P224, Infinity) { |
// We shouldn't allow ∞ to be imported. |
EXPECT_FALSE(a.SetFromString(std::string(zeros, sizeof(zeros)))); |
} |
+ |
+} // namespace crypto |