Comment out unused functions to restore -Werror

This commit restores compilation with -Werror and g++ version 7.3.0.

Consistent with 6dc450bc.
This commit is contained in:
Scott Kostyshak 2018-10-27 20:46:54 -04:00
parent e9384cb8d0
commit bceb2390b4

View File

@ -1155,6 +1155,7 @@ bool IgnoreFormats::ignoreFrontMatter= true;
bool IgnoreFormats::ignoreColor = false;
bool IgnoreFormats::ignoreLanguage = false;
#if 0
void IgnoreFormats::setIgnoreFormat(string type, bool value)
{
if (type == "color") {
@ -1191,11 +1192,14 @@ void IgnoreFormats::setIgnoreFormat(string type, bool value)
ignoreStrikeOut = value;
}
}
#endif
#if 0
void setIgnoreFormat(string type, bool value)
{
IgnoreFormats().setIgnoreFormat(type, value);
}
#endif
class LatexInfo {
private: