format not a string literal and no format arguments

今天cocos2d-x打包 android的时候报错:format not a string literal and no format arguments

报错点是:__String::createWithFormat(s_szFuWenEffect2[GetType()])->getCString()

代码vs2015编译是通过的,没任何问题。

修改方法:__String::createWithFormat("%s", s_szFuWenEffect2[GetType()])->getCString()

时间: 2024-10-13 14:10:37

format not a string literal and no format arguments的相关文章

Android studio2.2 ndk 错误 :format not a string literal and no format arguments!

在Android Studio2.2 进行NDK编程,在对*char 字符串 进行日志输出时,报错: error: format not a string literal and no format arguments [-Werror=format-security] 代码: 网上说是版本不兼容导致的!搜索了下解决 方法如下: 解决方法: 在你的ndk目录下修改build/core/default-build-commands.mk TARGET_FORMAT_STRING_CFLAGS :=

Error format not a string literal and no format arguments解决方案

原地址: http://blog.csdn.net/joeblackzqq/article/details/25985299 cData.cpp:355:30:error:format not a string literal and no fomat arguments [-Werror=format-security]cData.cpp:387:42:error:format not a string literal and no fomat arguments [-Werror=forma

Format string is not a string literal (potentially insecure)

Warning:  Format string is not a string literal (potentially insecure) [objc] view plaincopy NSString * str = nil; str = [NSString stringWithFormat:@"---%d---", 18] ; NSLog(str); 解决1: [objc] view plaincopy NSLog(str,nil); 解决2: [objc] view plainc

std::string stringf(const char* format, ...)

std::string stringf(const char* format, ...){ va_list arg_list; va_start(arg_list, format); // SUSv2 version doesn't work for buf NULL/size 0, so try printing // into a small buffer that avoids the double-rendering and alloca path too... char short_b

java基础---->String和MessageFormat的format方法

这里介绍一下String和MessageFormat中的format方法的差异以及实现原理. String与MessageFormat的说明 一.两者的使用场景 String.format:for layout justification and alignment, common formats for numeric, string, and date/time data, and locale-specific output. MessageFormat.format:to produce

[Error]EOL while scanning string literal

有一个经常性的工作项目.需要一天的一些表数据到外部接口,但最近总是异常.今天检查的原因. 第一本地和测试环境中测试程序是没有问题,有网络环境只会在日志中抛出一个异常.产生主要的例外是推定异常数据. ,由不得而知,于是添加了程序的输出日志和数据打印,通过几次的执行定位了错误发生的函数和数据记录. 异常是这种: EOL while scanning string literal: <string>, line 1, pos 7 google一下.这个异常造成的原因是字符串,引號没有成对出现,也就是

unterminated string literal JS 【转】

javascript使用document.write(str)进行输出时,常提示下列错误: Error: unterminated string literal.通常原因是输出字符str中包含换行符导致的. 解决方法如下: asp: str=replace(str,vbcrlf,"",1,-1,1) php:$str = str_replace("\n", "", $str);$str = str_replace("\r",

Atitit. 解决unterminated string literal 缺失引号

Atitit. 解决unterminated string literal 缺失引号 原因:::或许string没使用引号括号起来...missingMessage缺失了一个单个的引号 Error: unterminated string literal.通常原因是输出字符str中包含换行符导致的. 作者:: 老哇的爪子 Attilax 艾龙,  EMAIL:[email protected] 转载请注明来源: http://blog.csdn.net/attilax <input type=&qu

SyntaxError: unterminated string literal

jquery错误SyntaxError: unterminated string literal 通常原因是输出字符str中包含换行符导致的.