Skip to content

Commit

Permalink
Merge branch 'fix-unicode-prefix'
Browse files Browse the repository at this point in the history
  • Loading branch information
GiovanniBussi committed Jul 17, 2020
2 parents c19727d + c53b289 commit 872df19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/config/Config.inc.in
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,11 @@ std::string getVersionGit() {
}

std::string getMakefile() {
static const char conf [] = {
static const unsigned char confu [] = {
#include "Makefile.conf.xxd"
, 0x00
};
auto conf=(char*)confu;
return std::string(conf,conf+std::strlen(conf));
}

Expand Down

0 comments on commit 872df19

Please sign in to comment.