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

View File

@ -4,9 +4,9 @@
#pragma once
#include "Hashmap.h"
#include <string>
#include "Hashmap.h"
class API {
public:

View File

@ -4,9 +4,10 @@
#pragma once
#include <string>
#include "API.h"
#include <string>
class IPAPI : API{
public:
/**

View File

@ -4,9 +4,9 @@
#pragma once
#include "API.h"
#include <string>
#include "API.h"
class TelegramAPI : API {
public: