Fix includes
This commit is contained in:
parent
875109a6d6
commit
425ec29b0a
4 changed files with 4 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "../fractions/fractions.hpp"
|
||||
#include "fractions.hpp"
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
#include "matrix.hpp"
|
||||
#include "../complex-numbers/cnumber.hpp"
|
||||
#include "../vectors/vector.hpp"
|
||||
|
||||
int main() {
|
||||
vector a = vector(2);
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#include "../vectors/vector.hpp"
|
||||
#pragma once
|
||||
#include "vector.hpp"
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "../complex-numbers/cnumber.hpp"
|
||||
#include "cnumber.hpp"
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
class vector {
|
||||
|
|
Loading…
Add table
Reference in a new issue