Skip to content

Commit 275da40

Browse files
committed
update documentation and fix EXPORT inline classes
1 parent 4dbcb13 commit 275da40

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ project(${_7BIT_DI_LIBRARY} LANGUAGES CXX VERSION ${_7BIT_DI_VERSION})
1212

1313
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/Cmake")
1414

15-
include(${CMAKE_CURRENT_SOURCE_DIR}/Cmake/Functions.cmake)
16-
1715
if (NOT CMAKE_CXX_STANDARD)
1816
set(CMAKE_CXX_STANDARD 17)
1917
endif ()

Docs/reference/di/details/utils.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ sb::di::details - Utils
88
utils/assert.rst
99
utils/cast.rst
1010
utils/check.rst
11-
utils/extcheck.rst
1211
utils/container.rst
1312
utils/ctorparamsnumber.rst
1413
utils/iscopyctor.rst
1514
utils/isinplaceobject.rst
1615
utils/isuniqueptr.rst
1716
utils/removeuniqueptr.rst
1817
utils/require.rst
19-
utils/extrequire.rst
18+
utils/requiredescriptor.rst
19+
utils/requireinstance.rst
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ExtRequire
1+
RequireDescriptor
22
========================================
33

4-
.. doxygenstruct:: sb::di::details::ExtRequire
4+
.. doxygenstruct:: sb::di::details::RequireDescriptor
55
:members:
66
:undoc-members:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ExtCheck
1+
RequireInstance
22
========================================
33

4-
.. doxygenstruct:: sb::di::details::ExtCheck
4+
.. doxygenstruct:: sb::di::details::RequireInstance
55
:members:
66
:undoc-members:

Include/SevenBit/DI/Details/Models/ServiceId.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace sb::di::details
1313
{
14-
class EXPORT ServiceId
14+
class ServiceId
1515
{
1616
TypeId _typeId;
1717
std::string_view _key{};

Include/SevenBit/DI/Details/Utils/Check.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace sb::di::details
66
{
7-
struct EXPORT Check
7+
struct Check
88
{
99
template <class T> constexpr static bool notNull(const std::unique_ptr<T> &ptr) { return notNull(ptr.get()); }
1010

0 commit comments

Comments
 (0)