Skip to content

Commit

Permalink
Warnings fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Epixu committed Sep 12, 2023
1 parent fb5cd80 commit a1717fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Math/Verbs/Randomize.inl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ namespace Langulus::Verbs
return ((
common.CastsTo<T, true>() && ArithmeticVerb::Vector<T>(
context, common, verb,
[](const T* lhs, const T* rhs) -> T {
[](const T*, const T*) -> T {
TODO();
}
)
Expand All @@ -86,7 +86,7 @@ namespace Langulus::Verbs
return ((
common.CastsTo<T, true>() && ArithmeticVerb::Vector<T>(
context, common, verb,
[](T* lhs, const T* rhs) {
[](T*, const T*) {
TODO();
}
)
Expand Down

0 comments on commit a1717fd

Please sign in to comment.