最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c++ - instantiation of template class 'std::basic_string<unsigned int>' requested. #include &l

programmeradmin3浏览0评论

I am trying to use the Clock from SFML/System.hpp, but as soon as I include #include <SFML/System.hpp> in my header, and call make in the terminal, I get the error shown below. If I remove that line, there is no more error. This was never the case before today. I have tried multiple cases, but no help.

I have the following headers:

#include <string>
#include <iostream>
#include <fstream>
#include <SFML/System.hpp>
#include "EDistance.hpp"

ERROR:

g++ --std=c++17 -Wall -Werror -pedantic -g -c main.cpp -I/opt/homebrew/Cellar/boost/1.87.0_1/include/ -I/opt/homebrew/Cellar/sfml@2/2.6.2_1/include/
In file included from main.cpp:1:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/string:821:42: error: implicit instantiation of undefined template 'std::char_traits<unsigned int>'
  821 |   static_assert(is_same<_CharT, typename traits_type::char_type>::value,
      |                                          ^
/opt/homebrew/Cellar/sfml@2/2.6.2_1/include/SFML/System/String.hpp:52:18: note: in instantiation of template class 'std::basic_string<unsigned int>' requested here
   52 |     typedef std::basic_string<Uint32>::iterator       Iterator;      //!< Iterator type
      |                  ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
   23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
      |                             ^
1 error generated.
make: *** [main.o] Error 1

I am trying to use the Clock from SFML/System.hpp, but as soon as I include #include <SFML/System.hpp> in my header, and call make in the terminal, I get the error shown below. If I remove that line, there is no more error. This was never the case before today. I have tried multiple cases, but no help.

I have the following headers:

#include <string>
#include <iostream>
#include <fstream>
#include <SFML/System.hpp>
#include "EDistance.hpp"

ERROR:

g++ --std=c++17 -Wall -Werror -pedantic -g -c main.cpp -I/opt/homebrew/Cellar/boost/1.87.0_1/include/ -I/opt/homebrew/Cellar/sfml@2/2.6.2_1/include/
In file included from main.cpp:1:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/string:821:42: error: implicit instantiation of undefined template 'std::char_traits<unsigned int>'
  821 |   static_assert(is_same<_CharT, typename traits_type::char_type>::value,
      |                                          ^
/opt/homebrew/Cellar/sfml@2/2.6.2_1/include/SFML/System/String.hpp:52:18: note: in instantiation of template class 'std::basic_string<unsigned int>' requested here
   52 |     typedef std::basic_string<Uint32>::iterator       Iterator;      //!< Iterator type
      |                  ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
   23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
      |                             ^
1 error generated.
make: *** [main.o] Error 1
Share Improve this question edited yesterday Remy Lebeau 600k36 gold badges507 silver badges851 bronze badges asked yesterday Ansh PatelAnsh Patel 276 bronze badges 2
  • 1 The answer to your question will be found somewhere in the answer to the question, "What changed on your computer today?" For example, did you install any updates? – user4581301 Commented yesterday
  • 1 Please edit your question with an minimal reproducible example or SSCCE (Short, Self Contained, Correct Example) – NathanOliver Commented yesterday
Add a comment  | 

1 Answer 1

Reset to default 5

std::basic_string, and in particular std::char_traits, is not intended to be used with integer types, only character types. That's why the compiler is complaining about std::char_traits<unsigned int> being undefined.

SFML's sf::String type is a UTF-32 string, so they should be using char32_t instead of UInt32. char32_t was added in C++11 specifically for supporting UTF-32.

You appear to be using an older version of SFML (2.6.2), where Sf::String uses std::basic_string<UInt32>. In SFML 3.0.0, they changed Sf::String to instead use std::u32string (aka std::basic_string<char32_t>). You should consider upgrading your copy of SFML.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论