Use std::string in folly::dynamic
[folly.git] / folly / Unicode.h
index ecd0ae10033408761a873d15afb263e69c102979..542dc10babad2706e5efc2fa10e253e755c9b138 100644 (file)
@@ -18,7 +18,7 @@
 
 #pragma once
 
-#include <folly/FBString.h>
+#include <string>
 
 namespace folly {
 
@@ -29,7 +29,7 @@ namespace folly {
  *
  * Return value is undefined if `cp' is an invalid code point.
  */
-fbstring codePointToUtf8(char32_t cp);
+std::string codePointToUtf8(char32_t cp);
 
 //////////////////////////////////////////////////////////////////////