diff options
author | Christian Kandeler <[email protected]> | 2019-01-08 16:05:57 +0100 |
---|---|---|
committer | Orgad Shaneh <[email protected]> | 2019-01-10 09:04:46 +0000 |
commit | c6a6c12f052b05762b92775e1f19b546a3788d8e (patch) | |
tree | 7d565848e259ded0cc8b5a27296d78acbb732ae8 /src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp | |
parent | 4c191572044d4483f09b3b8d0f76ef164bd8f225 (diff) |
Canonicalize some includes
Our canonical style is
#include <utils/fileutils.h>
rather than
#include "utils/fileutils.h"
Which makes sense, as such headers will never be found in the local
directory.
Change-Id: I4ca46e90d6c4d19d4b1f235f4c79caad864ef222
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp b/src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp index 9d23f80fb19..cfa23b32190 100644 --- a/src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp +++ b/src/plugins/remotelinux/remotelinuxenvironmentaspect.cpp @@ -26,7 +26,7 @@ #include "remotelinuxenvironmentaspect.h" #include "remotelinuxenvironmentaspectwidget.h" -#include "utils/algorithm.h" +#include <utils/algorithm.h> namespace RemoteLinux { |