File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -661,14 +661,14 @@ namespace p
661
661
dirWatch->Watch ();
662
662
}
663
663
664
- void GenericWatch::WatchDir (StringView path )
664
+ void GenericWatch::WatchDir (StringView pathToWatch )
665
665
{
666
- dirWatch->WatchDir (path );
666
+ dirWatch->WatchDir (pathToWatch );
667
667
}
668
668
669
- bool GenericWatch::IsPathInWatches (StringView path ) const
669
+ bool GenericWatch::IsPathInWatches (StringView pathToCheck ) const
670
670
{
671
- return dirWatch->IsPathInWatches (path );
671
+ return dirWatch->IsPathInWatches (pathToCheck );
672
672
}
673
673
674
674
Original file line number Diff line number Diff line change @@ -73,7 +73,6 @@ namespace p
73
73
float y = value - (2 .0f * pi) * quotient;
74
74
75
75
// Map y to [-pi/2,pi/2] with sin(y) = sin(value).
76
- float sign;
77
76
if (y > halfPi)
78
77
{
79
78
y = pi - y;
Original file line number Diff line number Diff line change @@ -1237,7 +1237,7 @@ namespace p
1237
1237
1238
1238
TView<p::u8 > BinaryFormatWriter::GetData ()
1239
1239
{
1240
- return {data, size};
1240
+ return {data, i32 ( size) };
1241
1241
}
1242
1242
1243
1243
void BinaryFormatWriter::PreAlloc (u32 offset)
You can’t perform that action at this time.
0 commit comments