summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-05-05 13:36:49 +0200
committerGitHub <noreply@github.com>2017-05-05 13:36:49 +0200
commit913b86690746327e0a84bba49c119e79b73d8724 (patch)
tree8f0d53f264ed6ed94aac4fdd5a725455ef810ca3 /vespalib
parentd5767ad5e56d37adfef230858e1935000f14f459 (diff)
parent03e6ceb166d95de462993d0df4086e317f28e030 (diff)
Merge pull request #2398 from yahoo/balder/register-is-not-allowed-in-iso-c++1z
Balder/register is not allowed in iso c++1z
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/tests/explore_modern_cpp/explore_modern_cpp_test.cpp1
-rw-r--r--vespalib/src/vespa/vespalib/util/bobhash.h8
2 files changed, 5 insertions, 4 deletions
diff --git a/vespalib/src/tests/explore_modern_cpp/explore_modern_cpp_test.cpp b/vespalib/src/tests/explore_modern_cpp/explore_modern_cpp_test.cpp
index 05703b15641..172ec0acda5 100644
--- a/vespalib/src/tests/explore_modern_cpp/explore_modern_cpp_test.cpp
+++ b/vespalib/src/tests/explore_modern_cpp/explore_modern_cpp_test.cpp
@@ -1,5 +1,6 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/test_kit.h>
+#include <functional>
TEST("verify how std::function copies lambda closures") {
size_t count = 0;
diff --git a/vespalib/src/vespa/vespalib/util/bobhash.h b/vespalib/src/vespa/vespalib/util/bobhash.h
index bc4fc3876fc..c55f9086801 100644
--- a/vespalib/src/vespa/vespalib/util/bobhash.h
+++ b/vespalib/src/vespa/vespalib/util/bobhash.h
@@ -101,10 +101,10 @@ public:
*/
static uint32_t hash(const char *orig_k,
- register uint32_t length,
- register uint32_t initval) {
- register uint32_t a,b,c,len;
- register const unsigned char *k;
+ uint32_t length,
+ uint32_t initval) {
+ uint32_t a,b,c,len;
+ const unsigned char *k;
k = reinterpret_cast<const unsigned char *>(orig_k);
/* Set up the internal state */