Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Ast/src/Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "Luau/TimeTrace.h"

#include <algorithm>
#include <cstdlib>
Comment thread
Aesthete marked this conversation as resolved.
Outdated

#include <errno.h>
#include <limits.h>
Expand Down
1 change: 1 addition & 0 deletions Bytecode/src/BytecodeBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "Luau/StringUtils.h"

#include <algorithm>
#include <cstdlib>
Comment thread
Aesthete marked this conversation as resolved.
Outdated
#include <string.h>
#include <climits>

Expand Down
1 change: 1 addition & 0 deletions CLI/src/Bytecode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "Luau/FileUtils.h"
#include "Luau/Flags.h"

#include <cstdlib>
Comment thread
Aesthete marked this conversation as resolved.
Outdated
#include <memory>

using Luau::CodeGen::FunctionBytecodeSummary;
Expand Down
1 change: 1 addition & 0 deletions CLI/src/Compile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "Luau/FileUtils.h"
#include "Luau/Flags.h"

#include <cstdlib>
Comment thread
Aesthete marked this conversation as resolved.
Outdated
#include <memory>

#ifdef _WIN32
Expand Down
1 change: 1 addition & 0 deletions CLI/src/FileUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <sys/stat.h>
#endif

#include <errno.h>
#include <string.h>
#include <string_view>

Expand Down
1 change: 1 addition & 0 deletions CLI/src/Reduce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "Luau/FileUtils.h"

#include <algorithm>
#include <cstdlib>
Comment thread
Aesthete marked this conversation as resolved.
Outdated
#include <stdio.h>
#include <string>
#include <string_view>
Expand Down
1 change: 1 addition & 0 deletions CLI/src/Repl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#include "isocline.h"

#include <cstdlib>
#include <memory>
#include <string>
#include <string_view>
Expand Down
2 changes: 2 additions & 0 deletions CodeGen/include/Luau/ConditionA64.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#pragma once

#include "Luau/CodeGenCommon.h"

namespace Luau
{
namespace CodeGen
Expand Down
2 changes: 2 additions & 0 deletions CodeGen/include/Luau/ConditionX64.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

#include "Luau/CodeGenCommon.h"

#include <stdint.h>

namespace Luau
{
namespace CodeGen
Expand Down
2 changes: 2 additions & 0 deletions Common/include/Luau/BytecodeUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

#include "Luau/Bytecode.h"

#include <stdint.h>

namespace Luau
{

Expand Down
1 change: 1 addition & 0 deletions Compiler/src/Compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include <algorithm>
#include <bitset>
#include <cstdlib>
Comment thread
Aesthete marked this conversation as resolved.
Outdated

#include <math.h>

Expand Down
1 change: 1 addition & 0 deletions Compiler/src/lcode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include "Luau/Compiler.h"

#include <cstdlib>
Comment thread
Aesthete marked this conversation as resolved.
Outdated
#include <string.h>

char* luau_compile(const char* source, size_t size, lua_CompileOptions* options, size_t* outsize)
Expand Down
Loading