Skip to content

Commit

Permalink
update namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Herts committed May 21, 2024
1 parent cb11bc8 commit cc6d524
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bigint.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include <stdexcept>
#include <iostream>

namespace bigint_ns {
namespace BigInt {

class bigint {
private:
Expand Down Expand Up @@ -890,6 +890,6 @@ namespace bigint_ns {
return true;
}

} // namespace::bigint_ns
} // namespace::BigInt

#endif /* BIGINT_H_ */
2 changes: 1 addition & 1 deletion tests/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <string>
#include "../bigint.h"

using namespace bigint_ns;
using namespace BigInt;

class BigInt_test : public ::testing::Test
{
Expand Down

0 comments on commit cc6d524

Please sign in to comment.