Cycles: Minor code style cleanup, whitesaces

This commit is contained in:
Sergey Sharybin 2015-06-28 10:51:49 +02:00
parent 9f48aa45ad
commit d9ef528d05
2 changed files with 2 additions and 2 deletions

@ -42,7 +42,7 @@ void util_guarded_mem_free(size_t n);
/* Guarded allocator for the use with STL. */
template <typename T>
class GuardedAllocator: public std::allocator<T> {
class GuardedAllocator : public std::allocator<T> {
public:
template<typename _Tp1>
struct rebind {

@ -59,7 +59,7 @@ public:
/* Range constructor. */
template <class InputIterator>
vector (InputIterator first, InputIterator last)
vector(InputIterator first, InputIterator last)
: std::vector<value_type, allocator_type>(first, last) { }
/* Copy constructor. */