Skip to content

Commit 940033e

Browse files
committed
feat: Lua integration
1 parent 0ce939f commit 940033e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+32637
-486
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ if (WIN32)
191191
/permissive- # strict C++
192192
/W4 # enable all warnings
193193
/MP # multi-processor compilation
194-
/EHsc # C++ Exception handling
194+
/EHs # C++ Exception handling
195195
)
196196
endif()
197197
endif ()

include/mrdox/Metadata/DomContext.hpp

-48
This file was deleted.

include/mrdox/Metadata/DomMetadata.hpp

+14
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,20 @@
2020
namespace clang {
2121
namespace mrdox {
2222

23+
/*
24+
class DomFrame
25+
{
26+
struct Impl;
27+
28+
std::unique_ptr<Impl> impl_;
29+
30+
public:
31+
DomFrame(Corpus const& corpus);
32+
33+
dom::Value get(SymbolID const& id);
34+
};
35+
*/
36+
2337
/** Return a Dom node for the given metadata.
2438
*/
2539
MRDOX_DECL

0 commit comments

Comments
 (0)