fix undefined methods

This commit is contained in:
Daniel Larimer 2012-10-26 01:18:53 -04:00
parent 4f146b93f1
commit a819694d85
3 changed files with 1 additions and 3 deletions

View file

@ -77,7 +77,6 @@ namespace fc {
return o;
}
fc::cin_t& getline( fc::cin_t&, fc::string&, char delim = '\n' );
template<typename T>
cin_t& operator>>( cin_t& o, T& v ) {
fc::string str;

View file

@ -28,7 +28,7 @@ namespace fc {
fc::string to_string( int16_t d );
fc::string to_string( int8_t d );
fc::string to_string( char d );
fc::string to_string( const char* d );
inline fc::string to_string( const char* d ) { return d; }
inline fc::string to_string( fc::string s ) { return s; }
template<typename R>

View file

@ -1,5 +1,4 @@
#include <fc/json_rpc_client.hpp>
#include <iostream>
struct test {
int add(int x){ return x+1; }