Skip to content

Commit df2d0d6

Browse files
committed
fix windows ci failure
1 parent 7721585 commit df2d0d6

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

src/xinspect.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/************************************************************************************
22
* Copyright (c) 2023, xeus-cpp contributors *
3-
* Copyright (c) 2023, Johan Mabille, Loic Gouarin, Sylvain Corlay, Wolf Vollprecht *
43
* *
54
* Distributed under the terms of the BSD 3-Clause License. *
65
* *

src/xinspect.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222

2323
namespace xcpp
2424
{
25-
struct node_predicate
25+
struct XEUS_CPP_API node_predicate
2626
{
2727
std::string kind;
2828
std::string child_value;
2929

3030
bool operator()(pugi::xml_node node) const;
3131
};
3232

33-
struct class_member_predicate
33+
struct XEUS_CPP_API class_member_predicate
3434
{
3535
std::string class_name;
3636
std::string kind;
@@ -40,15 +40,15 @@ namespace xcpp
4040
bool operator()(pugi::xml_node node);
4141
};
4242

43-
std::string find_type_slow(const std::string& expression);
43+
XEUS_CPP_API std::string find_type_slow(const std::string& expression);
4444

4545
static nl::json read_tagconfs(const char* path);
4646

47-
std::pair<bool, std::smatch> is_inspect_request(const std::string& code, const std::regex& re);
47+
XEUS_CPP_API std::pair<bool, std::smatch> is_inspect_request(const std::string& code, const std::regex& re);
4848

49-
void inspect(const std::string& code, nl::json& kernel_res);
49+
XEUS_CPP_API void inspect(const std::string& code, nl::json& kernel_res);
5050

51-
class xintrospection : public xpreamble
51+
class XEUS_CPP_API xintrospection : public xpreamble
5252
{
5353
public:
5454

0 commit comments

Comments
 (0)