Skip to content

Commit

Permalink
Foxed Options::compare(..)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Oct 23, 2023
1 parent 3d30836 commit f718036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vsg/io/Options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ int Options::compare(const Object& rhs_object) const

if ((result = compare_pointer_container(readerWriters, rhs.readerWriters))) return result;
if ((result = compare_value(checkFilenameHint, rhs.checkFilenameHint))) return result;
if ((result = compare_value_container(paths, rhs.paths))) return result;
if ((result = compare_container(paths, rhs.paths))) return result;
if ((result = compare_value(fileCache, rhs.fileCache))) return result;
if ((result = compare_value(extensionHint, rhs.extensionHint))) return result;
if ((result = compare_value(mapRGBtoRGBAHint, rhs.mapRGBtoRGBAHint))) return result;
Expand Down

0 comments on commit f718036

Please sign in to comment.