Revision a62448d3
Added by David Sorber over 7 years ago
| software/photo_compress_archiver/PhotoCompressArchiver.cc | ||
|---|---|---|
|
m_filter_regex(filter_regex)
|
||
|
{
|
||
|
// This is a somewhat crude way to determining if the filter regex is empty
|
||
|
m_filter_empty = std::string("").compare(filter_regex.str()) == 0;
|
||
|
m_filter_empty = std::string("") == filter_regex.str();
|
||
|
}
|
||
|
|
||
|
PhotoCompressArchiver::~PhotoCompressArchiver()
|
||
|
{}
|
||
|
= default;
|
||
|
|
||
|
int PhotoCompressArchiver::execute()
|
||
|
{
|
||
Fixing items suggested by clang-tidy.