Cleaned up the read template overloads (per litb's update); it seems the old version didn't compile in VS2008. Also updated the VS project files.

This commit is contained in:
jbeder
2009-09-08 20:57:18 +00:00
parent 246d8993d2
commit 7b889b9f35
3 changed files with 22 additions and 2 deletions

View File

@@ -38,12 +38,12 @@ namespace YAML
struct flag { char c[2]; };
flag Convert(...);
char (& operator,(flag, flag) )[1];
int operator,(flag, flag);
template<typename T>
void operator,(flag, T const&);
char (& operator,(char(&)[1], flag) )[1];
char operator,(int, flag);
}
template <typename T>