From d76dc915b859a82fe9ba2ddede8d85027e889009 Mon Sep 17 00:00:00 2001
From: Linda Lapinlampi <linda@lindalap.fi>
Date: Thu, 30 Jan 2020 17:14:48 +0000
Subject: [PATCH 1/1] Normalize newlines to the dominating newline style

src/core/datapaths.h had an inconsistent newline style, using one UNIX
newline when the domianting newline style is DOS in that file. Newline
consistency is desired in a file (but not necessarily across the
project).

This non-dominating newline was found with tools/normalize_nl.py.

Fixes: #3758
---
 src/core/datapaths.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/datapaths.h b/src/core/datapaths.h
index cc3ead52..68149902 100644
--- a/src/core/datapaths.h
+++ b/src/core/datapaths.h
@@ -28,7 +28,7 @@
 #include <QDir>
 #include <QString>
 #include <QStringList>
-#include <utility>
+#include <utility>
 
 #define gDefaultDataPaths (DataPaths::defaultInstance())
 
-- 
2.25.0

