diff options
Diffstat (limited to '')
-rw-r--r-- | src/bitstring.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bitstring.cpp b/src/bitstring.cpp index 207a036..bdd1bc2 100644 --- a/src/bitstring.cpp +++ b/src/bitstring.cpp | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2007-2010 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. |
3 | * | 3 | * |
4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
@@ -444,9 +444,9 @@ long Bu::BitString::getHighestOrderBitPos() | |||
444 | return -1; | 444 | return -1; |
445 | } | 445 | } |
446 | 446 | ||
447 | Bu::FString Bu::BitString::toString() | 447 | Bu::String Bu::BitString::toString() |
448 | { | 448 | { |
449 | Bu::FString sRet; | 449 | Bu::String sRet; |
450 | for( int j = iBits-1; j >= 0; j-- ) | 450 | for( int j = iBits-1; j >= 0; j-- ) |
451 | sRet.append( getBit( j )?'1':'0' ); | 451 | sRet.append( getBit( j )?'1':'0' ); |
452 | return sRet; | 452 | return sRet; |