mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-10 22:00:54 +01:00
I have to comment out the `add_subdirectory(fuzz)` in order to allow cmake to finish the configuring step on Windows.
20 lines
368 B
C++
20 lines
368 B
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
namespace Luau::EqSat
|
|
{
|
|
|
|
struct Id final
|
|
{
|
|
explicit Id(size_t id);
|
|
|
|
explicit operator size_t() const;
|
|
|
|
bool operator==(Id rhs) const;
|
|
bool operator!=(Id rhs) const;
|
|
|
|
private:
|
|
size_t id;
|
|
};
|
|
|
|
} // namespace Luau::EqSat
|