Skip to content

fix: rename helpers #65

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/helpers/helpers.h → src/helpers/client_helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
* file that was distributed with this source code.
**/

#ifndef HELPERS_H
#define HELPERS_H
#ifndef CLIENT_HELPERS_H
#define CLIENT_HELPERS_H

#include <cstring>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion src/http/iot/http.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "http/http.h"
#include <memory>
#include <vector>
#include "helpers/helpers.h"
#include "helpers/client_helpers.h"

#ifdef ESP8266
#include <ESP8266HTTPClient.h>
Expand Down
2 changes: 1 addition & 1 deletion src/http/iot/main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "helpers/helpers.h"
#include "helpers/client_helpers.h"

#if (defined PLATFORMIO && !defined UNIT_TEST)

Expand Down
2 changes: 1 addition & 1 deletion src/http/os/http.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "http/http.h"
#include "helpers/helpers.h"
#include "helpers/client_helpers.h"

#ifndef USE_IOT

Expand Down