aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/android/Android.h
blob: 08e7dd93b2856384c11f0ef789db9842b795a5e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//===-- lldb-android.h --------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLDB_lldb_android_h_
#define LLDB_lldb_android_h_

#include <sstream>
#include <string>
#include <errno.h>

namespace std
{
	template <typename T>
	std::string to_string(T value)
	{
		std::ostringstream os ;
		os << value ;
		return os.str() ;
	}
}

#endif  // LLDB_lldb_android_h_