aboutsummaryrefslogtreecommitdiff
path: root/src/lane.cpp
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-05-29 17:31:45 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-05-29 17:31:45 +0200
commita156aaeb07fada043b308409dcffcae1726eec0b (patch)
treef15a5d60cda30607260d896598ea33f8619af53a /src/lane.cpp
parentd47758d58d532a9716ad4fd85cc806704df13735 (diff)
downloadlanes-a156aaeb07fada043b308409dcffcae1726eec0b.tar.gz
lanes-a156aaeb07fada043b308409dcffcae1726eec0b.tar.bz2
lanes-a156aaeb07fada043b308409dcffcae1726eec0b.zip
Fix clang-tidy issues (most notably Microsoft-specific explicit constructor calls)
Diffstat (limited to 'src/lane.cpp')
-rw-r--r--src/lane.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lane.cpp b/src/lane.cpp
index eef9e6e..22147f1 100644
--- a/src/lane.cpp
+++ b/src/lane.cpp
@@ -669,7 +669,7 @@ static void lane_main(Lane* lane_)
669 // At this point, the lane function and arguments are on the stack, possibly preceded by the error handler 669 // At this point, the lane function and arguments are on the stack, possibly preceded by the error handler
670 int const _errorHandlerCount{ lane_->errorTraceLevel == Lane::Minimal ? 0 : 1}; 670 int const _errorHandlerCount{ lane_->errorTraceLevel == Lane::Minimal ? 0 : 1};
671 int const _nargs{ lua_gettop(_L) - 1 - _errorHandlerCount }; 671 int const _nargs{ lua_gettop(_L) - 1 - _errorHandlerCount };
672 DEBUGSPEW_CODE(Universe* _U = universe_get(_L)); 672 DEBUGSPEW_CODE(Universe* _U = Universe::Get(_L));
673 lane_->status = Lane::Running; // Pending -> Running 673 lane_->status = Lane::Running; // Pending -> Running
674 674
675 PrepareLaneHelpers(lane_); 675 PrepareLaneHelpers(lane_);