summaryrefslogtreecommitdiff
path: root/idl/inc/bastype.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/inc/bastype.hxx')
-rw-r--r--idl/inc/bastype.hxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/idl/inc/bastype.hxx b/idl/inc/bastype.hxx
index afe3642d10e0..4e176a5b3ad9 100644
--- a/idl/inc/bastype.hxx
+++ b/idl/inc/bastype.hxx
@@ -35,7 +35,6 @@ class SvBOOL
bSet:1;
public:
SvBOOL() { bSet = bVal = false; }
- SvBOOL( bool b ) : bVal( b ), bSet( true ) {}
SvBOOL( bool b, bool bSetP ) : bVal( b ), bSet( bSetP ) {}
SvBOOL & operator = ( bool n ) { bVal = n; bSet = true; return *this; }