aboutsummaryrefslogtreecommitdiffstats
path: root/fastlib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2018-05-27 02:35:33 +0200
committerTor Egge <Tor.Egge@broadpark.no>2018-05-27 18:22:20 +0000
commitdc3b5a57b6706bb13a685e5f97d2517dd87b34e3 (patch)
tree098a7d1220d798edf23bc56847a4b2903a0bba2a /fastlib
parent2b33daa972f399b7734215ac03d8102cb68d7c1b (diff)
Use fallthrough attributes.
Diffstat (limited to 'fastlib')
-rw-r--r--fastlib/src/vespa/fastlib/util/base64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastlib/src/vespa/fastlib/util/base64.cpp b/fastlib/src/vespa/fastlib/util/base64.cpp
index 1b7889d8c47..8b9ac45e698 100644
--- a/fastlib/src/vespa/fastlib/util/base64.cpp
+++ b/fastlib/src/vespa/fastlib/util/base64.cpp
@@ -90,7 +90,7 @@ Fast_Base64::Decode(const char *source, unsigned int length, char *destination)
if (symbol != '=' || i == length)
return -1;
symbol = source[++i];
- //@fallthrough@
+ [[fallthrough]];
case 3: for (; i < length; ++i) {
symbol = source[i];
if (symbol == '\0')