Skip to content

Commit b250b23

Browse files
committed
Cosmetics
1 parent 9fa22f7 commit b250b23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/grib_accessor_class_bitmap.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len)
214214
template <typename T>
215215
static int unpack(grib_accessor* a, T* val, size_t* len)
216216
{
217-
static_assert(std::is_floating_point<T>::value, "Requires floating points numbers");
217+
static_assert(std::is_floating_point<T>::value, "Requires floating point numbers");
218218
long pos = a->offset * 8;
219219
long tlen;
220220
grib_handle* hand = grib_handle_of_accessor(a);

src/grib_accessor_class_data_g22order_packing.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ static int post_process(grib_context* c, long* vals, long len, long order, long
509509
template <typename T>
510510
static int unpack(grib_accessor* a, T* val, const size_t* len)
511511
{
512-
static_assert(std::is_floating_point<T>::value, "Requires floating points numbers");
512+
static_assert(std::is_floating_point<T>::value, "Requires floating point numbers");
513513
grib_accessor_data_g22order_packing* self = reinterpret_cast<grib_accessor_data_g22order_packing*>(a);
514514
const char* cclass_name = a->cclass->name;
515515
grib_handle* gh = grib_handle_of_accessor(a);

0 commit comments

Comments
 (0)