8000 fix include path in the sandbox and tests by David-Haim · Pull Request #17 · David-Haim/concurrencpp · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix include path in the sandbox and tests #17

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 2 commits into from
Oct 16, 2020
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
2 changes: 1 addition & 1 deletion sandbox/main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "concurrencpp.h"
#include "concurrencpp/concurrencpp.h"

#include <iostream>

Expand Down
2 changes: 1 addition & 1 deletion test/include/tests/test_utils/executor_shutdowner.h
< 8000 tr>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef CONCURRENCPP_EXECUTOR_TEST_HELPERS_H
#define CONCURRENCPP_EXECUTOR_TEST_HELPERS_H

#include "../../concurrencpp/src/executors/executor.h"
#include "concurrencpp/executors/executor.h"

namespace concurrencpp::tests {
struct executor_shutdowner {
Expand Down
2 changes: 1 addition & 1 deletion test/include/tests/test_utils/proxy_coro.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef CONCURRENCPP_PROXY_CORO_H
#define CONCURRENCPP_PROXY_CORO_H

#include "concurrencpp.h"
#include "concurrencpp/concurrencpp.h"

namespace concurrencpp::tests {
template<class type>
Expand Down
3 changes: 2 additions & 1 deletion test/include/tests/test_utils/test_executors.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#ifndef CONCURRENCPP_RESULT_TEST_EXECUTORS_H
#define CONCURRENCPP_RESULT_TEST_EXECUTORS_H

#include "concurrencpp.h"
#include "concurrencpp/concurrencpp.h"

#include "result_factory.h"
#include "test_ready_result.h"

Expand Down
2 changes: 1 addition & 1 deletion test/include/tests/test_utils/test_ready_result.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef CONCURRENCPP_TEST_READY_RESULT_H
#define CONCURRENCPP_TEST_READY_RESULT_H

#include "concurrencpp.h"
#include "concurrencpp/concurrencpp.h"

#include "result_factory.h"

Expand Down
31F8
0