Code style fixes.

This commit is contained in:
vng 2014-11-18 13:29:56 +03:00 committed by Alex Zolotarev
parent 48ecb3a587
commit 7a9c529381
2 changed files with 2 additions and 5 deletions

View file

@ -1,8 +1,6 @@
#pragma once
#include "assert.hpp"
#include "assert.hpp"
#include "../std/type_traits.hpp"
#include "../std/stdint.hpp"

View file

@ -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)];