File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ namespace experimental
62
62
std::vector<unsigned char > oauth1_config::_hmac_sha1 (const utility::string_t &, const utility::string_t &)
63
63
{
64
64
// CodePlex #230
65
- throw std::runtime_error ( " oauth1 is not implemented yet. " );
65
+ return std::vector< unsigned char >( );
66
66
}
67
67
68
68
#elif defined(_MS_WINDOWS) && defined(__cplusplus_winrt) // Windows RT
@@ -74,7 +74,7 @@ using namespace Windows::Storage::Streams;
74
74
std::vector<unsigned char > oauth1_config::_hmac_sha1 (const utility::string_t &, const utility::string_t &)
75
75
{
76
76
// CodePlex #230
77
- throw std::runtime_error ( " oauth1 is not implemented yet. " );
77
+ return std::vector< unsigned char >( );
78
78
}
79
79
80
80
#else // Linux, Mac OS X
@@ -84,7 +84,7 @@ std::vector<unsigned char> oauth1_config::_hmac_sha1(const utility::string_t&, c
84
84
std::vector<unsigned char > oauth1_config::_hmac_sha1 (const utility::string_t &, const utility::string_t &)
85
85
{
86
86
// CodePlex #230
87
- throw std::runtime_error ( " oauth1 is not implemented yet. " );
87
+ return std::vector< unsigned char >( );
88
88
}
89
89
90
90
#endif
You can’t perform that action at this time.
0 commit comments