|
|
|
@ -2,7 +2,7 @@ |
|
|
|
* This file is part of libeval, a simple math expression evaluator |
|
|
|
* |
|
|
|
* Copyright (C) 2017 Michael Geselbracht, mgeselbracht3@gmail.com |
|
|
|
* Copyright (C) 2019-2021 KiCad Developers, see AUTHORS.txt for contributors. |
|
|
|
* Copyright (C) 2019-2022 KiCad Developers, see AUTHORS.txt for contributors. |
|
|
|
* |
|
|
|
* This program is free software: you can redistribute it and/or modify |
|
|
|
* it under the terms of the GNU General Public License as published by |
|
|
|
@ -124,7 +124,7 @@ bool VALUE::EqualTo( CONTEXT* aCtx, const VALUE* b ) const |
|
|
|
if( b->m_stringIsWildcard ) |
|
|
|
return WildCompareString( b->AsString(), AsString(), false ); |
|
|
|
else |
|
|
|
return !AsString().CmpNoCase( b->AsString() ); |
|
|
|
return AsString().IsSameAs( b->AsString(), false ); |
|
|
|
} |
|
|
|
|
|
|
|
return false; |
|
|
|
|