my own uncrustify run
This commit is contained in:
@@ -2,25 +2,23 @@
|
||||
#include "pooledstring.h"
|
||||
#include "generic/static.h"
|
||||
|
||||
#if defined(_DEBUG)
|
||||
#if defined( _DEBUG )
|
||||
|
||||
namespace ExamplePooledString
|
||||
{
|
||||
void testStuff()
|
||||
{
|
||||
PooledString< LazyStatic<StringPool> > a, b;
|
||||
a = "monkey";
|
||||
b = "monkey";
|
||||
a = "";
|
||||
}
|
||||
void testStuff(){
|
||||
PooledString< LazyStatic<StringPool> > a, b;
|
||||
a = "monkey";
|
||||
b = "monkey";
|
||||
a = "";
|
||||
}
|
||||
|
||||
struct Always
|
||||
{
|
||||
Always()
|
||||
{
|
||||
testStuff();
|
||||
}
|
||||
} always;
|
||||
struct Always
|
||||
{
|
||||
Always(){
|
||||
testStuff();
|
||||
}
|
||||
} always;
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user