pull in latest osmcode/libosmium changes
This commit is contained in:
+2
-3
@@ -55,8 +55,7 @@ namespace osmium {
|
||||
|
||||
template <typename T>
|
||||
inline T padded_length(T length) noexcept {
|
||||
static_assert(std::is_integral<T>::value && std::is_unsigned<T>::value,
|
||||
"Template parameter must be unsigned integral type");
|
||||
static_assert(std::is_integral<T>::value && std::is_unsigned<T>::value, "Template parameter must be unsigned integral type");
|
||||
return (length + align_bytes - 1) & ~(align_bytes - 1);
|
||||
}
|
||||
|
||||
@@ -119,7 +118,7 @@ namespace osmium {
|
||||
|
||||
protected:
|
||||
|
||||
explicit Item(item_size_type size=0, item_type type=item_type()) noexcept :
|
||||
explicit Item(item_size_type size = 0, item_type type = item_type()) noexcept :
|
||||
m_size(size),
|
||||
m_type(type),
|
||||
m_removed(false),
|
||||
|
||||
Reference in New Issue
Block a user