correct order of #includes to include own libs first and then system ones

This commit is contained in:
2020-05-05 19:25:23 +02:00
parent 8659237ece
commit aef369b38b
9 changed files with 24 additions and 26 deletions
+1 -1
View File
@@ -4,9 +4,9 @@
#pragma once
#include "Hashmap.h"
#include <string>
#include "Hashmap.h"
class API {
public:
+2 -1
View File
@@ -4,9 +4,10 @@
#pragma once
#include <string>
#include "API.h"
#include <string>
class IPAPI : API{
public:
/**
+1 -1
View File
@@ -4,9 +4,9 @@
#pragma once
#include "API.h"
#include <string>
#include "API.h"
class TelegramAPI : API {
public: