Skip to content

Instantly share code, notes, and snippets.

2018-03-23 12:05:47,720-04 INFO ========================================================================
2018-03-23 12:05:47,735-04 INFO ============================ Initialization ============================
2018-03-23 12:05:47,736-04 INFO ========================================================================
2018-03-23 12:05:47,757-04 INFO Loading extension 'internal-authz'
2018-03-23 12:05:47,760-04 INFO Extension 'internal-authz' loaded
2018-03-23 12:05:47,762-04 INFO Loading extension 'internal-authn'
2018-03-23 12:05:47,762-04 INFO Extension 'internal-authn' loaded
2018-03-23 12:05:47,766-04 INFO Loading extension 'ngvlab.ninja-authn'
2018-03-23 12:05:47,807-04 INFO Extension 'ngvlab.ninja-authn' loaded
2018-03-23 12:05:47,810-04 INFO Loading extension 'ngvlab.ninja-authz'
1,4c1,19
< #ifndef MY_ABC_HERE
< #define MY_ABC_HERE
< #endif
<
---
> /*
> * Copyright (C) 2012 Alexander Block. All rights reserved.
> * Copyright (C) 2012 STRATO. All rights reserved.
> *
1,4c1,19
< #ifndef MY_ABC_HERE
< #define MY_ABC_HERE
< #endif
<
---
> /*
> * Copyright (C) 2012 Alexander Block. All rights reserved.
> * Copyright (C) 2012 STRATO. All rights reserved.
> *
1,4c1,18
< #ifndef MY_ABC_HERE
< #define MY_ABC_HERE
< #endif
<
---
> /*
> * Copyright (C) 2012 Alexander Block. All rights reserved.
> *
> * This program is free software; you can redistribute it and/or
1,4c1,18
< #ifndef MY_ABC_HERE
< #define MY_ABC_HERE
< #endif
<
---
> /*
> * Copyright (C) 2007 Oracle. All rights reserved.
> *
> * This program is free software; you can redistribute it and/or
1,4c1,18
< #ifndef MY_ABC_HERE
< #define MY_ABC_HERE
< #endif
<
---
> /*
> * Copyright (C) 2007 Oracle. All rights reserved.
> *
> * This program is free software; you can redistribute it and/or
--- /home/bartoc/Downloads/linux-3.10.x/fs/btrfs/disk-io.c 2017-10-30 17:07:19.000000000 -0400
+++ /home/bartoc/rpmbuild/BUILD/kernel-3.10.0-693.el7/linux-3.10.0-693.fc28.x86_64/fs/btrfs/disk-io.c 2017-07-06 19:37:46.000000000 -0400
@@ -1,6 +1,20 @@
-#ifndef MY_ABC_HERE
-#define MY_ABC_HERE
-#endif
+/*
+ * Copyright (C) 2007 Oracle. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or
*** WARNING: I am going to run 'configure' with no arguments.
*** If you wish to pass any to it, please specify them on the
*** './autogen.sh' command line.
autoreconf: Entering directory `.'
autoreconf: running: autopoint --force
autoreconf: running: aclocal --force
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in '.'.
macro `.`*(pkg: PkgInstall, field: untyped): untyped =
## ^ This makes PkgInstall types act like concatinations
## of the Pkg, PkgVer and PkgLayout types
var subfields = pkg.getType.last
expectKind(subfields, nnkRecList)
for elm in subfields:
var fields = elm.getType.last
expectKind(fields, nnkRecList)
var real_field = findChild(fields, eqIdent(it, $field))
if real_field != nil:
struct t1 {
a: i8,
b: i16
}
struct t2 {
c: String
}
struct t3 {
first: t1,
second: t2