summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/types.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types.cpp b/src/types.cpp
index d7c70a1e..58d820f5 100644
--- a/src/types.cpp
+++ b/src/types.cpp
@@ -40,13 +40,13 @@ void TypeRef::merge_with(const TypeRef& other)
{
// Ignore if other is wildcard
if( other.m_class == TypeRef::ANY ) {
- assert(other.m_inner_types.size() == 0 && !"TODO: merge_with on bounded _");
+ assert(other.m_inner_types.size() == 0 && "TODO: merge_with on bounded _");
return;
}
// If this is a wildcard, then replace with the othet type
if( m_class == TypeRef::ANY ) {
- assert(m_inner_types.size() == 0 && !"TODO: merge_with on bounded _");
+ assert(m_inner_types.size() == 0 && "TODO: merge_with on bounded _");
*this = other;
return;
}