From 07d3f80b5456d5aa8a0d8b45a4adb70df12f2de2 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Wed, 16 May 2018 10:24:32 +0200 Subject: [PATCH] Utils: make nullopt_t available in the Utils namespace Change-Id: I7e8084b4fce5cdda88435453e096ef0b9530d00d Reviewed-by: Eike Ziller --- src/libs/utils/optional.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libs/utils/optional.h b/src/libs/utils/optional.h index e4f943259f7..a9f58334b70 100644 --- a/src/libs/utils/optional.h +++ b/src/libs/utils/optional.h @@ -41,6 +41,7 @@ namespace Utils { using std::experimental::optional; // --> Utils::nullopt using std::experimental::nullopt; +using std::experimental::nullopt_t; // --> Utils::in_place using std::experimental::in_place;