You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by am...@apache.org on 2015/11/05 16:40:29 UTC

trafficserver git commit: TS-306: Fix clang warning, ambiguous constructor use.

Repository: trafficserver
Updated Branches:
  refs/heads/master a4b33c664 -> 53d485443


TS-306: Fix clang warning, ambiguous constructor use.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/53d48544
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/53d48544
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/53d48544

Branch: refs/heads/master
Commit: 53d4854434a2ab4cab26adfe6af2a1ef01bae224
Parents: a4b33c6
Author: Alan M. Carroll <am...@apache.org>
Authored: Thu Nov 5 09:40:06 2015 -0600
Committer: Alan M. Carroll <am...@apache.org>
Committed: Thu Nov 5 09:40:06 2015 -0600

----------------------------------------------------------------------
 lib/ts/Diags.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/53d48544/lib/ts/Diags.cc
----------------------------------------------------------------------
diff --git a/lib/ts/Diags.cc b/lib/ts/Diags.cc
index 68a61b9..bc5d0d8 100644
--- a/lib/ts/Diags.cc
+++ b/lib/ts/Diags.cc
@@ -816,7 +816,7 @@ Diags::set_stdout_output(const char *_bind_stdout)
   }
 
   // get root
-  ElevateAccess elevate();
+  ElevateAccess elevate;
 
   // create backing BaseLogFile for stdout
   stdout_log = new BaseLogFile(_bind_stdout);
@@ -855,7 +855,7 @@ Diags::set_stderr_output(const char *_bind_stderr)
     stderr_log = NULL;
   }
   // get root
-  ElevateAccess elevate();
+  ElevateAccess elevate;
 
   // create backing BaseLogFile for stdout
   stderr_log = new BaseLogFile(_bind_stderr);