Skip to content

Commit 9076c0f

Browse files
committed
Made all other "operator bool"s explicit and ensured
that all clients use them explicitly. This will hopefully prevent any future confusion where things get cast to types we don't expect. <rdar://problem/15146458> llvm-svn: 191984
1 parent 210791a commit 9076c0f

16 files changed

+25
-25
lines changed

lldb/include/lldb/Core/ModuleSpec.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ class ModuleSpec
288288
}
289289

290290

291-
operator bool () const
291+
explicit operator bool () const
292292
{
293293
if (m_file)
294294
return true;

lldb/include/lldb/Host/FileSpec.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class FileSpec
177177
/// A pointer to this object if either the directory or filename
178178
/// is valid, NULL otherwise.
179179
//------------------------------------------------------------------
180-
operator bool() const;
180+
explicit operator bool() const;
181181

182182
//------------------------------------------------------------------
183183
/// Logical NOT operator.

lldb/include/lldb/Interpreter/CommandObject.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class CommandObject
4242
return (*help_callback)();
4343
}
4444

45-
operator bool() const
45+
explicit operator bool() const
4646
{
4747
return (help_callback != NULL);
4848
}

lldb/include/lldb/Interpreter/OptionValueBoolean.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class OptionValueBoolean : public OptionValue
9292
/// /b True this object contains a valid namespace decl, \b
9393
/// false otherwise.
9494
//------------------------------------------------------------------
95-
operator bool() const
95+
explicit operator bool() const
9696
{
9797
return m_current_value;
9898
}

lldb/include/lldb/Interpreter/PythonDataObjects.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ namespace lldb_private {
105105
PythonString
106106
Str ();
107107

108-
operator bool () const
108+
explicit operator bool () const
109109
{
110110
return m_py_obj != NULL;
111111
}

lldb/include/lldb/Interpreter/ScriptInterpreter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class ScriptInterpreterObject
4141
return m_object;
4242
}
4343

44-
operator bool ()
44+
explicit operator bool ()
4545
{
4646
return m_object != NULL;
4747
}

lldb/include/lldb/Interpreter/ScriptInterpreterPython.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ class ScriptInterpreterPython : public ScriptInterpreter
282282
Py_XINCREF(m_object);
283283
}
284284

285-
operator bool ()
285+
explicit operator bool ()
286286
{
287287
return m_object && m_object != Py_None;
288288
}
@@ -351,7 +351,7 @@ class ScriptInterpreterPython : public ScriptInterpreter
351351
public:
352352
PythonInputReaderManager (ScriptInterpreterPython *interpreter);
353353

354-
operator bool()
354+
explicit operator bool()
355355
{
356356
return m_error;
357357
}

lldb/include/lldb/Symbol/ClangASTType.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class ClangASTType
9898
// Tests
9999
//----------------------------------------------------------------------
100100

101-
operator bool () const
101+
explicit operator bool () const
102102
{
103103
return m_type != NULL && m_ast != NULL;
104104
}

lldb/include/lldb/Symbol/ClangNamespaceDecl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class ClangNamespaceDecl
6262
/// /b True this object contains a valid namespace decl, \b
6363
/// false otherwise.
6464
//------------------------------------------------------------------
65-
operator bool() const
65+
explicit operator bool() const
6666
{
6767
return m_ast != NULL && m_namespace_decl != NULL;
6868
}

lldb/include/lldb/Utility/SharingPtr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ class IntrusiveSharingPtr
714714
return ptr_;
715715
}
716716

717-
operator bool() const
717+
explicit operator bool() const
718718
{
719719
return ptr_ != 0;
720720
}

lldb/source/API/SBFileSpec.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ SBFileSpec::operator = (const SBFileSpec &rhs)
6161
bool
6262
SBFileSpec::IsValid() const
6363
{
64-
return *m_opaque_ap;
64+
return m_opaque_ap->operator bool();
6565
}
6666

6767
bool

lldb/source/API/SBModuleSpec.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ SBModuleSpec::~SBModuleSpec ()
4444
bool
4545
SBModuleSpec::IsValid () const
4646
{
47-
return *m_opaque_ap;
47+
return m_opaque_ap->operator bool();
4848
}
4949

5050
void

lldb/source/Commands/CommandObjectRegister.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class CommandObjectRegisterRead : public CommandObjectParsed
9898
{
9999
strm.Indent ();
100100

101-
bool prefix_with_altname = m_command_options.alternate_name;
101+
bool prefix_with_altname = (bool)m_command_options.alternate_name;
102102
bool prefix_with_name = !prefix_with_altname;
103103
reg_value.Dump(&strm, reg_info, prefix_with_name, prefix_with_altname, m_format_options.GetFormat(), 8);
104104
if ((reg_info->encoding == eEncodingUint) || (reg_info->encoding == eEncodingSint))

lldb/source/Core/Debugger.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -1900,12 +1900,12 @@ FormatPromptRecurse
19001900
if (var_name_begin[0] == 'n' || var_name_begin[5] == 'f')
19011901
{
19021902
format_file_spec.GetFilename() = exe_module->GetFileSpec().GetFilename();
1903-
var_success = format_file_spec;
1903+
var_success = (bool)format_file_spec;
19041904
}
19051905
else
19061906
{
19071907
format_file_spec = exe_module->GetFileSpec();
1908-
var_success = format_file_spec;
1908+
var_success = (bool)format_file_spec;
19091909
}
19101910
}
19111911
}
@@ -2065,12 +2065,12 @@ FormatPromptRecurse
20652065
if (IsToken (var_name_begin, "basename}"))
20662066
{
20672067
format_file_spec.GetFilename() = module->GetFileSpec().GetFilename();
2068-
var_success = format_file_spec;
2068+
var_success = (bool)format_file_spec;
20692069
}
20702070
else if (IsToken (var_name_begin, "fullpath}"))
20712071
{
20722072
format_file_spec = module->GetFileSpec();
2073-
var_success = format_file_spec;
2073+
var_success = (bool)format_file_spec;
20742074
}
20752075
}
20762076
}
@@ -2089,12 +2089,12 @@ FormatPromptRecurse
20892089
if (IsToken (var_name_begin, "basename}"))
20902090
{
20912091
format_file_spec.GetFilename() = sc->comp_unit->GetFilename();
2092-
var_success = format_file_spec;
2092+
var_success = (bool)format_file_spec;
20932093
}
20942094
else if (IsToken (var_name_begin, "fullpath}"))
20952095
{
20962096
format_file_spec = *sc->comp_unit;
2097-
var_success = format_file_spec;
2097+
var_success = (bool)format_file_spec;
20982098
}
20992099
}
21002100
}
@@ -2353,12 +2353,12 @@ FormatPromptRecurse
23532353
if (IsToken (var_name_begin, "basename}"))
23542354
{
23552355
format_file_spec.GetFilename() = sc->line_entry.file.GetFilename();
2356-
var_success = format_file_spec;
2356+
var_success = (bool)format_file_spec;
23572357
}
23582358
else if (IsToken (var_name_begin, "fullpath}"))
23592359
{
23602360
format_file_spec = sc->line_entry.file;
2361-
var_success = format_file_spec;
2361+
var_success = (bool)format_file_spec;
23622362
}
23632363
}
23642364
else if (IsTokenWithFormat (var_name_begin, "number", token_format, "%" PRIu64, exe_ctx, sc))

lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class DWARFDeclContext
5454
}
5555

5656
// Test operator
57-
operator bool() const
57+
explicit operator bool() const
5858
{
5959
return tag != 0;
6060
}

lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2625,7 +2625,7 @@ SymbolFileDWARF::ResolveClangOpaqueTypeDefinition (ClangASTType &clang_type)
26252625
}
26262626
}
26272627

2628-
return clang_type;
2628+
return (bool)clang_type;
26292629

26302630
case DW_TAG_enumeration_type:
26312631
clang_type.StartTagDeclarationDefinition ();
@@ -2637,7 +2637,7 @@ SymbolFileDWARF::ResolveClangOpaqueTypeDefinition (ClangASTType &clang_type)
26372637
ParseChildEnumerators(sc, clang_type, is_signed, type->GetByteSize(), dwarf_cu, die);
26382638
}
26392639
clang_type.CompleteTagDeclarationDefinition ();
2640-
return clang_type;
2640+
return (bool)clang_type;
26412641

26422642
default:
26432643
assert(false && "not a forward clang type decl!");

0 commit comments

Comments
 (0)