We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72582fe commit 77c8780Copy full SHA for 77c8780
include/cpp-terminfo/Terminfos.hpp
@@ -30,7 +30,7 @@ class DLL_EXPORT Terminfos
30
{
31
public:
32
Terminfos() = default;
33
- DLL_EXPORT static const Terminfo* getTerminfo(const std::string& term)
+ static DLL_EXPORT const Terminfo* getTerminfo(const std::string& term)
34
35
for(std::size_t i = 0; i != m_terminfos.size(); ++i)
36
@@ -40,7 +40,7 @@ class DLL_EXPORT Terminfos
40
}
41
42
private:
43
- static const std::vector<std::reference_wrapper<Terminfo>> m_terminfos;
+ static DLL_EXPORT const std::vector<std::reference_wrapper<Terminfo>> m_terminfos;
44
};
45
46
DLL_EXPORT inline const Terminfo* get(const std::string& term)
0 commit comments