forked from organicmaps/organicmaps
Code style fixes.
This commit is contained in:
parent
48ecb3a587
commit
7a9c529381
2 changed files with 2 additions and 5 deletions
|
@ -1,8 +1,6 @@
|
|||
#pragma once
|
||||
#include "assert.hpp"
|
||||
|
||||
#include "assert.hpp"
|
||||
|
||||
#include "../std/type_traits.hpp"
|
||||
#include "../std/stdint.hpp"
|
||||
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
#include "../base/base.hpp"
|
||||
|
||||
#include "../std/string.hpp"
|
||||
|
||||
#include <boost/type_traits/is_integral.hpp>
|
||||
#include "../std/type_traits.hpp"
|
||||
|
||||
|
||||
namespace impl
|
||||
|
@ -40,7 +39,7 @@ inline string ToHex(ContainerT const & container)
|
|||
template <typename IntT>
|
||||
inline string NumToHex(IntT n)
|
||||
{
|
||||
STATIC_ASSERT(boost::is_integral<IntT>::value);
|
||||
STATIC_ASSERT(is_integral<IntT>::value);
|
||||
|
||||
uint8_t buf[sizeof(n)];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue