apply clang-format settings to the c++ sources in the unittest tree

This commit is contained in:
Axel Kohlmeyer
2020-06-13 01:54:58 -04:00
parent 4d62ea98cf
commit 3db944decc
18 changed files with 1400 additions and 1429 deletions

View File

@ -20,7 +20,7 @@
class YamlWriter {
public:
YamlWriter(const char * outfile);
YamlWriter(const char *outfile);
virtual ~YamlWriter();
// emitters
@ -33,11 +33,11 @@ public:
private:
FILE *fp;
yaml_emitter_t emitter;
yaml_event_t event;
yaml_event_t event;
private:
YamlWriter() {};
YamlWriter(const YamlWriter &) {};
YamlWriter(){};
YamlWriter(const YamlWriter &){};
};
#endif