Fix c++ standard from 14 to 17 for abseil-cpp version up to
20240722.0
It fixes the below build error.
/usr/include/absl/strings/string_view.h:53:26:
error: 'string_view' in namespace 'std' does not name a type
53 | using string_view = std::string_view;
| ^~~~~~~~~~~
/usr/include/absl/strings/string_view.h:53:21:
note: 'std::string_view' is only available from C++17 onwards
53 | using string_view = std::string_view;
Change-Id: I65c3ae573d9510934222e3b41764dca3285cc2cd
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>