Skip to content

Commit

Permalink
Removing fixme
Browse files Browse the repository at this point in the history
  • Loading branch information
Lomadriel committed Jan 8, 2019
1 parent 53f1f3d commit addc77f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/wfc/utility/math.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace wfc
{
#if WFC__has_builtin(__builtin_clz) && WFC__has_builtin(__builtin_clzl) && WFC__has_builtin(__builtin_clzll)
template <typename T>
T clz(T x) // FIXME
T clz(T x)
{
assert(x != 0); // clz is undefined for 0

Expand All @@ -39,7 +39,7 @@ namespace wfc
}
#else
template <typename T>
T clz(T x) // FIXME
T clz(T x)
{
static_assert(std::is_unsigned_v<T>, "T should be unsigned");

Expand Down

0 comments on commit addc77f

Please sign in to comment.