下記の提示コードですが参考サイトのリファレンスを参考にやっているのですがなぜvsprintf();関数を指定通り指定してもなぜエラーがでるのでしょうか?parameter packs not expanded with ‘...’:
とはどいう意味なのでしょうか?
参考サイト: https://ohwhsmm7.blog.fc2.com/blog-entry-534.html
参考サイト: https://www.k-cube.co.jp/wakaba/server/func/vsprintf.html
shigurechan@shigurechan-System-Product-Name:~/program/FrameWork$ make g++ -I/usr/local/include/freetype2 -c -MMD -MP source/Main.cpp -o obj/Main.o In file included from /usr/local/include/freetype2/freetype/config/ftstdlib.h:169, from /usr/local/include/freetype2/freetype/config/ftconfig.h:42, from /usr/local/include/freetype2/freetype/freetype.h:25, from source/../header/Simple_Draw.hpp:8, from source/../header/FrameWork.hpp:9, from source/Main.cpp:1: source/../header/Text.hpp: In member function ‘void FrameWork::Text::setString(FrameWork::Resource::Asset, unsigned char, glm::lowp_u8vec4, const char*, const Args& ...)’: source/../header/Text.hpp:86:13: error: parameter packs not expanded with ‘...’: 86 | va_start(va,args); | ^~~~~~~~ source/../header/Text.hpp:86:13: note: ‘args’ In file included from source/../header/FrameWork.hpp:13, from source/Main.cpp:1: source/../header/Text.hpp:87:21: error: parameter packs not expanded with ‘...’: 87 | vsprintf(buf,args,va); | ~~~~~~~~^~~~~~~~~~~~~ source/../header/Text.hpp:87:21: note: ‘args’ make: *** [Makefile:18: obj/Main.o] エラー 1
// ##################################### 固定長文字列 文字列 設定 ##################################### template <typename... Args> void setString(const Resource::Asset font, const byte pixelSize, const glm::lowp_u8vec4 color, const char* text, const Args& ... args) { //std::string str = std::format(text, args...); char buf[1024] = { '\0' }; va_list va; va_start(va,args...); vsprintf(buf,args...,va); va_end(va); String str = buf; String string; string.text = std::make_shared<std::vector<Character>>(0); std::vector<wchar_t> wc = getWchar_t(buf); //wchar_t型 取得 setTexture(wc,string.text,color,pixelSize,font); //テクスチャ 設定 fixedLength->push_back(string); }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/28 07:09
2021/09/28 11:15