summaryrefslogtreecommitdiff
path: root/sal/rtl/strtmpl.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-14 22:45:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-17 17:55:16 +0100
commitd84cf2de01f17f2617846135081a819ce74dd87a (patch)
tree192bc83388393b8daefe0dd8b1610c50f111a7bd /sal/rtl/strtmpl.cxx
parent6f69fb5d7d7f66d17b56eca5a5b3f494c597b97a (diff)
sal: sal_Bool -> bool
Change-Id: I071a931660dafc1ee5950da527b042fb175255b8
Diffstat (limited to 'sal/rtl/strtmpl.cxx')
-rw-r--r--sal/rtl/strtmpl.cxx6
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;