summaryrefslogtreecommitdiff
path: root/gdb/charset.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/charset.h')
-rw-r--r--gdb/charset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/charset.h b/gdb/charset.h
index 51180e3babb..821974a7181 100644
--- a/gdb/charset.h
+++ b/gdb/charset.h
@@ -19,7 +19,7 @@
#ifndef CHARSET_H
#define CHARSET_H
-#include <vector>
+#include "common/def-vector.h"
/* If the target program uses a different character set than the host,
GDB has some support for translating between the two; GDB converts
@@ -144,7 +144,7 @@ class wchar_iterator
size_t m_width;
/* The output buffer. */
- std::vector<gdb_wchar_t> m_out;
+ gdb::def_vector<gdb_wchar_t> m_out;
};