Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authortatiana-yan <tatiana.kondakova@gmail.com>2019-04-09 15:11:54 +0300
committermpimenov <mpimenov@users.noreply.github.com>2019-04-09 18:02:17 +0300
commitc246c21ac21225165cf2a1018a30e272d1273b8e (patch)
tree3ea4ced943e2a9e35a16feb3d64902f8bf734f85 /tools
parentd3c01acd1948d59924b3735add4c593b5cb55b59 (diff)
[std] Remove std/array.hpp
Diffstat (limited to 'tools')
-rwxr-xr-xtools/python/tts_languages.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/python/tts_languages.py b/tools/python/tts_languages.py
index e9ac929115..709d810a66 100755
--- a/tools/python/tts_languages.py
+++ b/tools/python/tts_languages.py
@@ -6,8 +6,8 @@ import re
LANGUAGES_HPP_TEMPLATE = """\
#pragma once
-#include "std/array.hpp"
-#include "std/string.hpp"
+#include <array>
+#include <string>
// This file is autogenerated while exporting sounds.csv from the google table.
// It contains the list of languages which can be used by TTS.
@@ -19,7 +19,7 @@ namespace turns
{{
namespace sound
{{
-array<string, {lang_list_size}> const kLanguageList =
+std::array<std::string, {lang_list_size}> const kLanguageList =
{{{{
{lang_list}
}}}};