std::string to const char*

Reviewed By: danzimm

Differential Revision: D6570194

fbshipit-source-id: 84dae925b9269393b6925e0977598e3872acb14e
This commit is contained in:
Max Sherman 2017-12-14 13:02:08 -08:00 committed by Facebook Github Bot
parent ea2e2c54cb
commit b952365ba6
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
using magic_number_t = uint32_t;
const magic_number_t MAGIC_FILE_HEADER = 0xFB0BD1E5;
const std::string MAGIC_FILE_NAME = "UNBUNDLE";
const char* MAGIC_FILE_NAME = "UNBUNDLE";
namespace facebook {
namespace react {