Skip to content

Commit

Permalink
[unity]修复名字空间后缀功能导致unity build失败
Browse files Browse the repository at this point in the history
  • Loading branch information
chexiongsheng committed Oct 17, 2023
1 parent ba228dd commit f166b36
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion unreal/Puerts/Source/JsEnv/Private/PromiseRejectCallback.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#pragma once
#include <sstream>
#include "PuertsNamespaceDef.h"
#if !defined(PUERTS_NAMESPACE)
#if defined(WITH_QJS_NAMESPACE_SUFFIX)
#define PUERTS_NAMESPACE puerts_qjs
#else
#define PUERTS_NAMESPACE puerts
#endif
#endif

namespace PUERTS_NAMESPACE
{
Expand Down

0 comments on commit f166b36

Please sign in to comment.