mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-11 09:39:49 -06:00
Merge topic 'lcc-updates-2025-01'
a438a0460aArgumentParserTypes: implement a workaround for EDG 6 assertion failured3edb67134Tests: disable some tests on Alt Linux due to rpm config68d730bcffTests: switch off some RunCMake tests for broken libc on e2k488de6294aCPack: correctly perform querytags on old versions of RPM Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !10174
This commit is contained in:
@@ -21,6 +21,13 @@ struct Maybe<std::string> : public std::string
|
||||
|
||||
template <typename T>
|
||||
struct MaybeEmpty;
|
||||
# if defined(__LCC__) && (__EDG_VERSION__ >= 603)
|
||||
template <>
|
||||
struct MaybeEmpty<std::vector<std::string>> : public std::vector<std::string>
|
||||
{
|
||||
using std::vector<std::string>::vector;
|
||||
};
|
||||
# endif
|
||||
template <typename T>
|
||||
struct MaybeEmpty<std::vector<T>> : public std::vector<T>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user