aboutsummaryrefslogtreecommitdiff
path: root/src/libutil
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/types.hh3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libutil/types.hh b/src/libutil/types.hh
index 89ae108f9..3af485fa0 100644
--- a/src/libutil/types.hh
+++ b/src/libutil/types.hh
@@ -1,6 +1,5 @@
#pragma once
-
#include "ref.hh"
#include <list>
@@ -25,7 +24,6 @@ typedef string Path;
typedef list<Path> Paths;
typedef set<Path> PathSet;
-
/* Helper class to run code at startup. */
template<typename T>
struct OnStartup
@@ -33,5 +31,4 @@ struct OnStartup
OnStartup(T && t) { t(); }
};
-
}