branch:
details: http://enblend.hg.sourceforge.net/hgweb/enblend/enblend/hg/p/enblend/code/rev/4bc188ec1b3a
changeset: 1522:4bc188ec1b3a
user: tmodes <tm...@us...>
date: Mon Sep 23 18:13:25 2019 +0200
description:
Unified line breaks
diffstat:
VERSION | 2 +-
src/graphcut.h | 10 +++++-----
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (26 lines):
diff -r f977fcbbca30 -r 4bc188ec1b3a VERSION
--- a/VERSION Mon Sep 23 18:12:52 2019 +0200
+++ b/VERSION Mon Sep 23 18:13:25 2019 +0200
@@ -1,1 +1,1 @@
-4.3-803e2cb3da0f
+4.3-f977fcbbca30
diff -r f977fcbbca30 -r 4bc188ec1b3a src/graphcut.h
--- a/src/graphcut.h Mon Sep 23 18:12:52 2019 +0200
+++ b/src/graphcut.h Mon Sep 23 18:13:25 2019 +0200
@@ -74,11 +74,11 @@
namespace enblend
{
- template <class T>
- inline void hash_combine(std::size_t & seed, const T & value)
- {
- std::hash<T> hasher;
- seed ^= hasher(value) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
+ template <class T>
+ inline void hash_combine(std::size_t & seed, const T & value)
+ {
+ std::hash<T> hasher;
+ seed ^= hasher(value) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}
struct pointHash
|