Commit 4d0825b7 authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

bugs

parent ab51aa67
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -23,7 +23,11 @@ compile_problem_2:
      artifacts: true
  script:
    - cp include/MyBloom.h hw4/tests/include/
    - cp impl/MyBloom.cpp hw4/tests/impl/ || true    # don't fail if MyBloom.cpp does not exist
    # don't fail if MyBloom.cpp does not exist
    - |
      if [ -f impl/MyBloom.cpp ]; then
        cp impl/MyBloom.cpp hw4/tests/impl/
      fi
    - cd hw4/tests
    - make problem2
  artifacts:
+1 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@
#include <string>
#include <array>
#include <memory>
#include <vector>

#include "include/MyBloom.h"