We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a9425 commit e8d69f4Copy full SHA for e8d69f4
code/header_units/solution/Complex.hpp
code/header_units/solution/Makefile
@@ -6,7 +6,7 @@ clean:
6
algorithm numeric random vector:
7
${CXX} -std=c++20 -fmodules-ts -x c++-system-header $@
8
9
-Complex_header_unit: Complex.hpp
+Complex_header_unit: ../Complex.hpp
10
${CXX} -std=c++20 -g -O0 -Wall -Wextra -fmodules-ts -x c++-header $<
11
12
main.o: main.cpp Complex_header_unit algorithm numeric random vector
code/header_units/solution/main.cpp
@@ -3,7 +3,7 @@ import <algorithm>;
3
import <vector>;
4
import <numeric>;
5
import <random>;
-import "Complex.hpp";
+import "../Complex.hpp";
template<typename T>
void compute(int len, T initial, T step) {
0 commit comments