Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-06-28 11:51:49 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-06-28 19:15:25 +0300
commitd9ef528d0518fcb69da4a06c80e9f4f6c2202f79 (patch)
treed082470cb7ce4afb913dac32c59d9fead0b2aea9 /intern/cycles/util
parent9f48aa45adb34e03f42d8960fa6d47c5e8b061ab (diff)
Cycles: Minor code style cleanup, whitesaces
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_guarded_allocator.h2
-rw-r--r--intern/cycles/util/util_vector.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/util/util_guarded_allocator.h b/intern/cycles/util/util_guarded_allocator.h
index 14a680cf01c..2df717253e3 100644
--- a/intern/cycles/util/util_guarded_allocator.h
+++ b/intern/cycles/util/util_guarded_allocator.h
@@ -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 {
diff --git a/intern/cycles/util/util_vector.h b/intern/cycles/util/util_vector.h
index af7c69c7df9..6f718b1eaf2 100644
--- a/intern/cycles/util/util_vector.h
+++ b/intern/cycles/util/util_vector.h
@@ -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. */