Commit 6e9ff9fa authored by Ross Light's avatar Ross Light

Add missing CANONICAL case to isPlausibly

parent eea8759e
...@@ -1459,6 +1459,7 @@ private: ...@@ -1459,6 +1459,7 @@ private:
case Format::PACKED : return isPlausiblyPacked (prefix); case Format::PACKED : return isPlausiblyPacked (prefix);
case Format::FLAT : return isPlausiblyFlat (prefix); case Format::FLAT : return isPlausiblyFlat (prefix);
case Format::FLAT_PACKED: return isPlausiblyPackedFlat(prefix); case Format::FLAT_PACKED: return isPlausiblyPackedFlat(prefix);
case Format::CANONICAL : return isPlausiblyFlat (prefix);
case Format::TEXT : return isPlausiblyText (prefix); case Format::TEXT : return isPlausiblyText (prefix);
case Format::JSON : return isPlausiblyJson (prefix); case Format::JSON : return isPlausiblyJson (prefix);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment