summaryrefslogtreecommitdiff
path: root/src/mongo/util/hex.h
diff options
context:
space:
mode:
authorTyler Brock <tyler.brock@gmail.com>2015-02-06 14:29:45 -0500
committerTyler Brock <tyler.brock@gmail.com>2015-02-06 16:37:35 -0500
commitaa9980b8c02de71c6918fba4aba9f22dd10eed01 (patch)
tree3ade9078069c7e1317a8b31c2e1fc427977d7abe /src/mongo/util/hex.h
parent3a7675bb6fa110a10be307db3201bfb348cf41cf (diff)
downloadmongo-aa9980b8c02de71c6918fba4aba9f22dd10eed01.tar.gz
SERVER-16940 Change pass-by-const-ref of StringData to pass-by-value
Diffstat (limited to 'src/mongo/util/hex.h')
-rw-r--r--src/mongo/util/hex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/hex.h b/src/mongo/util/hex.h
index 08e182e31e6..d9724986008 100644
--- a/src/mongo/util/hex.h
+++ b/src/mongo/util/hex.h
@@ -49,7 +49,7 @@ namespace mongo {
inline char fromHex( const char *c ) {
return (char)(( fromHex( c[ 0 ] ) << 4 ) | fromHex( c[ 1 ] ));
}
- inline char fromHex( const StringData& c ) {
+ inline char fromHex( StringData c ) {
return (char)(( fromHex( c[ 0 ] ) << 4 ) | fromHex( c[ 1 ] ));
}