Skip to content

Commit

Permalink
Fixed Backend reflection
Browse files Browse the repository at this point in the history
  • Loading branch information
muit committed Dec 13, 2024
1 parent cc8bb14 commit d4daf85
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CMake/Util.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ function(rift_module target)
pipe_target_define_platform(${target})
pipe_target_shared_output_directory(${target})
pipe_target_enable_CPP20(${target})
pipe_target_disable_rtti(${target} PRIVATE)
set_target_properties(${target} PROPERTIES FOLDER Rift)
endfunction(rift_module)

Expand Down
2 changes: 1 addition & 1 deletion Extern/Pipe
Submodule Pipe updated 2 files
+16 −8 CMake/Util.cmake
+1 −0 CMakeLists.txt
2 changes: 1 addition & 1 deletion Libs/AST/Include/Compiler/Backend.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ namespace rift
{
class Backend : public p::Object
{
public:
using Super = p::Object;
P_CLASS(Backend)

public:
virtual p::Tag GetName()
{
return p::Tag::None();
Expand Down
1 change: 1 addition & 0 deletions Libs/Backends/MIR/Compiler/Include/MIRBackendModule.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ namespace rift

class MIRBackend : public Backend
{
public:
using Super = Backend;
P_CLASS(MIRBackend)

Expand Down

0 comments on commit d4daf85

Please sign in to comment.