mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
Fixed struct vs. class disparity.
This commit is contained in:
parent
ec2ecad197
commit
b16f958660
2 changed files with 4 additions and 12 deletions
|
@ -5,8 +5,8 @@
|
|||
#include <ios>
|
||||
|
||||
namespace YAML
|
||||
{
|
||||
class Stream;
|
||||
{
|
||||
struct Stream;
|
||||
|
||||
enum REGEX_OP { REGEX_EMPTY, REGEX_MATCH, REGEX_RANGE, REGEX_OR, REGEX_AND, REGEX_NOT, REGEX_SEQ };
|
||||
|
||||
|
@ -66,10 +66,10 @@ namespace YAML
|
|||
|
||||
bool Matches(char ch) const;
|
||||
bool Matches(const std::string& str) const;
|
||||
bool Matches(std::istream& in) const;
|
||||
bool Matches(std::istream& in) const;
|
||||
bool Matches(Stream& in) const;
|
||||
int Match(const std::string& str) const;
|
||||
int Match(std::istream& in) const;
|
||||
int Match(std::istream& in) const;
|
||||
int Match(Stream& in) const;
|
||||
|
||||
friend RegEx operator ! (const RegEx& ex);
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
- "basic node"
|
||||
- !<!howdy> "yeah baby"
|
||||
|
||||
---
|
||||
- "basic node"
|
||||
- !<!<!howdy>> "yeah baby"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue