diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-06-09 00:50:59 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-06-09 00:50:59 +0000 |
| commit | 60a2ed8ee8aa994c83d382af2ec477e171beb950 (patch) | |
| tree | 6fea6867adee00f22b9d775a6dce15ed875d75e6 /pokemod/Fraction.cpp | |
| parent | 0737b455ca94351c574aa1a8c83ea30c5b7bc443 (diff) | |
| download | sigen-60a2ed8ee8aa994c83d382af2ec477e171beb950.tar.gz sigen-60a2ed8ee8aa994c83d382af2ec477e171beb950.tar.xz sigen-60a2ed8ee8aa994c83d382af2ec477e171beb950.zip | |
[FIX] All modules now use their own namespace
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@201 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/Fraction.cpp')
| -rw-r--r-- | pokemod/Fraction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemod/Fraction.cpp b/pokemod/Fraction.cpp index a4a41e7d..50ddfd63 100644 --- a/pokemod/Fraction.cpp +++ b/pokemod/Fraction.cpp @@ -18,13 +18,13 @@ // Header include #include "Fraction.h" -void Fraction::set(const int numerator, const int denominator) +void Pokemod::Fraction::set(const int numerator, const int denominator) { m_numerator = numerator; m_denominator = denominator; } -void Fraction::reduce() +void Pokemod::Fraction::reduce() { int i = m_numerator; int j = m_denominator; |
