luau/Analysis/src/Constraint.cpp

14 lines
253 B
C++
Raw Normal View History

2022-06-17 02:05:14 +01: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-24 02:56:00 +01:00
Constraint::Constraint(ConstraintV&& c)
2022-06-17 02:05:14 +01:00
: c(std::move(c))
{
}
} // namespace Luau