diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-14 22:45:44 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:16 +0100 |
commit | d84cf2de01f17f2617846135081a819ce74dd87a (patch) | |
tree | 192bc83388393b8daefe0dd8b1610c50f111a7bd /sal/rtl/strtmpl.cxx | |
parent | 6f69fb5d7d7f66d17b56eca5a5b3f494c597b97a (diff) |
sal: sal_Bool -> bool
Change-Id: I071a931660dafc1ee5950da527b042fb175255b8
Diffstat (limited to 'sal/rtl/strtmpl.cxx')
-rw-r--r-- | sal/rtl/strtmpl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/rtl/strtmpl.cxx b/sal/rtl/strtmpl.cxx index f2eac10bf217..a9eb665e9216 100644 --- a/sal/rtl/strtmpl.cxx +++ b/sal/rtl/strtmpl.cxx @@ -898,7 +898,7 @@ namespace { sal_Int16 nRadix ) { BOOST_STATIC_ASSERT(std::numeric_limits<T>::is_signed); - sal_Bool bNeg; + bool bNeg; sal_Int16 nDigit; U n = 0; @@ -911,14 +911,14 @@ namespace { if ( *pStr == '-' ) { - bNeg = sal_True; + bNeg = true; pStr++; } else { if ( *pStr == '+' ) pStr++; - bNeg = sal_False; + bNeg = false; } T nDiv; |