obfs, string: Modify tables to va args

This commit is contained in:
revsic
2019-02-23 02:56:00 +09:00
parent 1a6f445370
commit f61e883836
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -22,6 +22,6 @@ int main() {
obfs::encoder_seq<xor_<0x50>, add<10>, comp<xor_<0x50>, add<10>>>,
obfs::decoder_seq<xor_<0x50>, add<-10>, comp<add<-10>, xor_<0x50>>>>;
MAKE_STRING(str, table, "Hello World !");
MAKE_STRING(str, "Hello World !", table);
std::cout << str.decode() << std::endl;
}