Format first-party source according to .clang-format

This commit is contained in:
Pretty Printer
2020-04-17 09:56:34 -05:00
committed by manojsdoshi
parent 65dfc5d19e
commit 50760c6935
1076 changed files with 86161 additions and 77449 deletions

View File

@@ -25,21 +25,23 @@
namespace ripple {
/** Manages the list of known inner object formats.
*/
class InnerObjectFormats : public KnownFormats <int>
*/
class InnerObjectFormats : public KnownFormats<int>
{
private:
/** Create the object.
This will load the object with all the known inner object formats.
*/
InnerObjectFormats ();
InnerObjectFormats();
public:
static InnerObjectFormats const& getInstance ();
static InnerObjectFormats const&
getInstance();
SOTemplate const* findSOTemplateBySField (SField const& sField) const;
SOTemplate const*
findSOTemplateBySField(SField const& sField) const;
};
} // ripple
} // namespace ripple
#endif