From f4bf470fa9b49cf23cf3cc5458f989d652b64235 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Tue, 21 Jul 2015 20:01:17 -0400 Subject: [PATCH] Removed accidental std:: prefix --- src/openalpr/support/re2/util/strutil.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openalpr/support/re2/util/strutil.cc b/src/openalpr/support/re2/util/strutil.cc index ab28df7..215923a 100644 --- a/src/openalpr/support/re2/util/strutil.cc +++ b/src/openalpr/support/re2/util/strutil.cc @@ -1,7 +1,7 @@ // Copyright 1999-2005 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -#include + #include "re2/util/util.h" #include "re2/stringpiece.h" @@ -41,7 +41,7 @@ int CEscapeString(const char* src, int src_len, char* dest, #ifdef WIN32 sprintf_s(dest + used, dest_len, "\\%03o", c); #else - std::sprintf(dest + used, "\\%03o", c); + sprintf(dest + used, "\\%03o", c); #endif used += 4;