mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-07 07:20:50 +08:00
Removed accidental std:: prefix
This commit is contained in:
@@ -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 <stdio.h>
|
||||
|
||||
#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;
|
||||
|
Reference in New Issue
Block a user