From 3245d00edbcde2a7cfec1387fd24df4673b3db32 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Mon, 8 May 2017 17:20:36 +0200 Subject: [PATCH] TW-1910: Remove unreachable statement - Thanks to Martin Strunz. --- src/Variant.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Variant.cpp b/src/Variant.cpp index b955c1f9f..050d7f516 100644 --- a/src/Variant.cpp +++ b/src/Variant.cpp @@ -1953,8 +1953,6 @@ bool Variant::trivial () const (_type == type_string && _string == "") || (_type == type_date && _date == 0) || (_type == type_duration && _duration == 0); - - return false; } ////////////////////////////////////////////////////////////////////////////////