aboutsummaryrefslogtreecommitdiff
path: root/contrib/native/client/src/include
diff options
context:
space:
mode:
authorNorris Lee <norrisl@simba.com>2015-04-06 11:20:34 -0700
committerParth Chandra <pchandra@maprtech.com>2015-04-06 18:24:06 -0700
commite4e88cca931569011290a036fed6b1602ac80839 (patch)
tree9eb494cf77c5cdadcf95460b2b3115464c56d20a /contrib/native/client/src/include
parentab7034b2ba0c8cbdaf33372249bf68491ffe0f39 (diff)
DRILL-2671: C++ Client Authentication API passing std::string across DLL boundaries
Diffstat (limited to 'contrib/native/client/src/include')
-rw-r--r--contrib/native/client/src/include/drill/drillClient.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/native/client/src/include/drill/drillClient.hpp b/contrib/native/client/src/include/drill/drillClient.hpp
index c288c7073..d7bf33c07 100644
--- a/contrib/native/client/src/include/drill/drillClient.hpp
+++ b/contrib/native/client/src/include/drill/drillClient.hpp
@@ -141,7 +141,7 @@ class DECLSPEC_DRILL_CLIENT DrillUserProperties{
DrillUserProperties(){};
- void setProperty( std::string propName, std::string propValue){
+ void setProperty( const std::string& propName, const std::string& propValue){
std::pair< std::string, std::string> in = make_pair(propName, propValue);
m_properties.push_back(in);
}