use CopiedString.empty()

This commit is contained in:
Garux
2024-02-02 01:04:42 +06:00
parent 1f2e1616a8
commit 649fcd4067
5 changed files with 6 additions and 6 deletions

View File

@@ -125,7 +125,7 @@ public:
void evaluate( StringBuffer& output ) const override {
StringBuffer buffer;
m_test->evaluate( buffer );
if ( !string_empty( buffer.c_str() ) ) {
if ( !buffer.empty() ) {
m_result->evaluate( output );
}
}