aboutsummaryrefslogtreecommitdiff
path: root/gdb/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/utils.h')
-rw-r--r--gdb/utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/utils.h b/gdb/utils.h
index c922a22..bb5fadc 100644
--- a/gdb/utils.h
+++ b/gdb/utils.h
@@ -185,12 +185,12 @@ public:
return m_argv + count ();
}
- bool operator!= (nullptr_t)
+ bool operator!= (std::nullptr_t)
{
return m_argv != NULL;
}
- bool operator== (nullptr_t)
+ bool operator== (std::nullptr_t)
{
return m_argv == NULL;
}