aboutsummaryrefslogtreecommitdiff
path: root/libbutl/semantic-version.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-08-15 18:25:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-08-15 18:25:32 +0200
commitf0424d682ef24530f901616611fd04f831c8b432 (patch)
treeeb9fe81be32927ddd14d5de171e13ffea721d8fa /libbutl/semantic-version.ixx
parentb0b19063bffe83af805f2b92106b7da47e21a5d4 (diff)
Reorder inline function definitions to pacify MinGW GCC (DLL linkage)
Diffstat (limited to 'libbutl/semantic-version.ixx')
-rw-r--r--libbutl/semantic-version.ixx19
1 files changed, 6 insertions, 13 deletions
diff --git a/libbutl/semantic-version.ixx b/libbutl/semantic-version.ixx
index cd88663..c9f6659 100644
--- a/libbutl/semantic-version.ixx
+++ b/libbutl/semantic-version.ixx
@@ -16,9 +16,11 @@ namespace butl
{
}
+ // Note: the order is important to MinGW GCC (DLL linkage).
+ //
inline semantic_version::
- semantic_version (const std::string& s, bool ab)
- : semantic_version (s, ab ? "-+" : nullptr)
+ semantic_version (const std::string& s, std::size_t p, bool ab)
+ : semantic_version (s, p, ab ? "-+" : nullptr)
{
}
@@ -29,18 +31,9 @@ namespace butl
}
inline semantic_version::
- semantic_version (const std::string& s, std::size_t p, bool ab)
- : semantic_version (s, p, ab ? "-+" : nullptr)
- {
- }
-
- inline int semantic_version::
- compare (const semantic_version& v, bool ib) const
+ semantic_version (const std::string& s, bool ab)
+ : semantic_version (s, ab ? "-+" : nullptr)
{
- return (major != v.major ? (major < v.major ? -1 : 1) :
- minor != v.minor ? (minor < v.minor ? -1 : 1) :
- patch != v.patch ? (patch < v.patch ? -1 : 1) :
- ib ? 0 : build.compare (v.build));
}
struct semantic_version_result