Skip to content

Commit 1982b9d

Browse files
author
TobiKattmann
committed
Added WRT_MESH_QUALITY as deprecated option.
1 parent eba4157 commit 1982b9d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Common/src/CConfig.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2893,9 +2893,12 @@ void CConfig::SetConfig_Parsing(istream& config_buffer){
28932893
newString.append("\n");
28942894
if (!option_name.compare("RELAXATION_FACTOR_ADJFLOW"))
28952895
newString.append("Option RELAXATION_FACTOR_ADJFLOW is now RELAXATION_FACTOR_ADJOINT, "
2896-
"and it also applies to discrete adjoint problems\n.");
2896+
"and it also applies to discrete adjoint problems.\n\n");
2897+
if (!option_name.compare("WRT_MESH_QUALITY"))
2898+
newString.append("WRT_MESH_QUALITY is deprecated. Use VOLUME_OUTPUT= (MESH_QUALITY, ...) instead.\n\n");
28972899
errorString.append(newString);
28982900
err_count++;
2901+
line_count++;
28992902
continue;
29002903
}
29012904

@@ -2908,6 +2911,7 @@ void CConfig::SetConfig_Parsing(istream& config_buffer){
29082911
newString.append("\n");
29092912
errorString.append(newString);
29102913
err_count++;
2914+
line_count++;
29112915
continue;
29122916
}
29132917

0 commit comments

Comments
 (0)