Skip to content

Commit

Permalink
C++ - fix formatting for clang-format
Browse files Browse the repository at this point in the history
This change is intneded to allow the GitHub action for linting C++ code
will succeed.
  • Loading branch information
david-cattermole committed Dec 30, 2024
1 parent f9517b3 commit 3d7ea9d
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/mmSolver/cmd/MMAnimCurveFilterPopsCmd.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,22 @@
#define MM_SOLVER_MM_ANIM_CURVE_FILTER_POPS_CMD_H

// Maya
#include <maya/MPxCommand.h>
#include <maya/MAnimCurveChange.h>
#include <maya/MArgDatabase.h>
#include <maya/MArgList.h>
#include <maya/MSyntax.h>
#include <maya/MObject.h>
#include <maya/MDGModifier.h>
#include <maya/MFnAnimCurve.h>
#include <maya/MObject.h>
#include <maya/MPxCommand.h>
#include <maya/MSyntax.h>
#include <maya/MTime.h>
#include <maya/MDGModifier.h>
#include <maya/MAnimCurveChange.h>

namespace mmsolver {

class MMAnimCurveFilterPopsCmd : public MPxCommand {
public:
MMAnimCurveFilterPopsCmd()
: m_startFrame(1.0)
, m_endFrame(101.0)
, m_threshold(1.0){};
: m_startFrame(1.0), m_endFrame(101.0), m_threshold(1.0){};
virtual ~MMAnimCurveFilterPopsCmd();

virtual bool hasSyntax() const;
Expand Down

0 comments on commit 3d7ea9d

Please sign in to comment.