From cc6d524537b25c7415493cd4b93c7ed428e1a640 Mon Sep 17 00:00:00 2001 From: Samuel Herts Date: Tue, 21 May 2024 11:58:36 -0400 Subject: [PATCH] update namespace --- bigint.h | 4 ++-- tests/test.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bigint.h b/bigint.h index 227b5f6..7258a97 100644 --- a/bigint.h +++ b/bigint.h @@ -35,7 +35,7 @@ #include #include -namespace bigint_ns { +namespace BigInt { class bigint { private: @@ -890,6 +890,6 @@ namespace bigint_ns { return true; } -} // namespace::bigint_ns +} // namespace::BigInt #endif /* BIGINT_H_ */ diff --git a/tests/test.cpp b/tests/test.cpp index 9b3f4cf..f8c0754 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -6,7 +6,7 @@ #include #include "../bigint.h" -using namespace bigint_ns; +using namespace BigInt; class BigInt_test : public ::testing::Test {