Skip to content

Commit b1aadd3

Browse files
committed
Fix poppler benchmark.
std::basic_string<unsigned short> will no longer work with LLVM 19.
1 parent 203bc12 commit b1aadd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/third_party/poppler/cpp/poppler-global.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ typedef unsigned int /* time_t */ time_type;
7979
#pragma warning(push)
8080
#pragma warning(disable: 4251) /* class 'A' needs to have dll interface for to be used by clients of class 'B'. */
8181
#endif
82-
class POPPLER_CPP_EXPORT ustring : public std::basic_string<unsigned short>
82+
class POPPLER_CPP_EXPORT ustring : public std::basic_string<char16_t>
8383
{
8484
public:
8585
ustring();

0 commit comments

Comments
 (0)