Merge "Make kAshmemMemoryName constexpr" am: 5775907bcc am: f147a1fb8c am: 44a0bf2d95
am: 1da6ebb8a3

Change-Id: I4f53c8fa96498c8e8f230dd51491de69064fa770
diff --git a/transport/memory/1.0/default/HidlFetch.cpp b/transport/memory/1.0/default/HidlFetch.cpp
index d47cf97..a636e03 100644
--- a/transport/memory/1.0/default/HidlFetch.cpp
+++ b/transport/memory/1.0/default/HidlFetch.cpp
@@ -16,9 +16,11 @@
 
 #include "HidlFetch.h"
 
+#include <string_view>
+
 #include "AshmemMapper.h"
 
-static std::string kAshmemMemoryName = "ashmem";
+static constexpr std::string_view kAshmemMemoryName = "ashmem";
 
 namespace android {
 namespace hidl {