Skip to content

Commit

Permalink
Minor fixes (lsils#476)
Browse files Browse the repository at this point in the history
* missing include guards.
* windows CI.
  • Loading branch information
hriener authored May 28, 2021
1 parent 1f7fa60 commit 372a1bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
working-directory: ./build
- name: Build mockturtle
run: |
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" mockturtle.sln /t:run_tests
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" mockturtle.sln
working-directory: ./build
shell: cmd
- name: Run tests
Expand Down
2 changes: 2 additions & 0 deletions include/mockturtle/generators/majority.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
\author Mathias Soeken
*/

#pragma once

#include <algorithm>
#include <array>

Expand Down
5 changes: 3 additions & 2 deletions include/mockturtle/generators/majority_n.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@
\author Mathias Soeken
*/

#include <array>
#include <vector>
#pragma once

#include "sorting.hpp"

#include <array>
#include <vector>

namespace mockturtle
{
Expand Down

0 comments on commit 372a1bd

Please sign in to comment.