Skip to content

Commit

Permalink
Removed extra semicolon at the end of a function
Browse files Browse the repository at this point in the history
  • Loading branch information
miaobin authored and Maratyszcza committed Apr 10, 2024
1 parent 0a92994 commit 581ac1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third-party/half.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1922,7 +1922,7 @@ namespace half_float
#endif

typedef half type;
static half cast(U arg) { return cast_impl(arg, is_float<U>()); };
static half cast(U arg) { return cast_impl(arg, is_float<U>()); }

private:
static half cast_impl(U arg, true_type) { return half(binary, float2half<R>(static_cast<float>(arg))); }
Expand Down

0 comments on commit 581ac1c

Please sign in to comment.