diff options
author | Oskar <[email protected]> | 2024-08-15 21:22:06 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-08-15 21:22:06 +0200 |
commit | ccf67ccfcf7fa892559db8d1475c3217e9692ae2 (patch) | |
tree | c2291f2a5290e1f5ddbfd719db55b7aa8f254484 /4p2.cpp | |
parent | 38e3c732d86165a84cd872e96e10ca1e811f2bb1 (diff) |
removed some headers to maybe speed up compile time maybe it will work i dont know
Diffstat (limited to '4p2.cpp')
-rw-r--r-- | 4p2.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +#include <iostream> +#include <vector> + +/* + * + * 4.2 + * + * + */ + +int main () { + + //* vec.begin() // Function is called, then dereferenced + //* vec.begin() + 1 // Function called, dereference, add + + return 0; +} |