luau/Analysis/src/Constraint.cpp

14 lines
253 B
C++
Raw Normal View History

2022-06-16 21:05:14 -04:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#include "Luau/Constraint.h"
namespace Luau
{
2022-06-23 21:56:00 -04:00
Constraint::Constraint(ConstraintV&& c)
2022-06-16 21:05:14 -04:00
: c(std::move(c))
{
}
} // namespace Luau