Skip to content

Commit

Permalink
More tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
kunitoki committed Mar 18, 2023
1 parent 72847d9 commit 2743579
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Tests/Source/ClassTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2621,25 +2621,25 @@ template <std::size_t Alignment>
struct alignas(Alignment) Vec
{
public:
Vec(double InA, double InB, double InC, double InD)
{
X = InA;
Y = InB;
Z = InC;
W = InD;
}
Vec(double InA, double InB, double InC, double InD)
{
X = InA;
Y = InB;
Z = InC;
W = InD;
}

public:

double X;
double Y;
double Z;
double W;
double X;
double Y;
double Z;
double W;

bool isAligned() const
{
bool isAligned() const
{
return luabridge::is_aligned<Alignment>(reinterpret_cast<const double*>(this));
}
}
};
} // namespace

Expand Down

0 comments on commit 2743579

Please sign in to comment.