Skip to content

Commit

Permalink
Fix missing copyright notices on stdutils and picross libs
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-dejoue committed Nov 4, 2023
1 parent 45be54d commit 4de313f
Show file tree
Hide file tree
Showing 21 changed files with 81 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/picross/src/grid.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#include "grid.h"

#include "line.h"
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/grid.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#pragma once

#include "line_span.h"
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/input_grid.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#include <picross/picross_input_grid.h>

#include "line_constraint.h"
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/line_alternatives.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#include "line_alternatives.h"

#include "binomial.h"
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/line_alternatives.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#pragma once

#include "line_span.h"
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/line_span.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#include "line_span.h"

#include <algorithm>
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/line_span.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#pragma once

#include <picross/picross.h>
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/picross_solver_version.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#include <picross/picross.h>

#include "picross_solver_version.h"
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/picross_solver_version.h.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#pragma once

#define PICROSS_SOLVER_VERSION_STRING "@picross_solver_VERSION@"
5 changes: 5 additions & 0 deletions src/picross/src/picross_stats.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#include <picross/picross.h>
#include "picross_stats_internal.h"

Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/picross_stats_internal.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#pragma once

#include <picross/picross_stats.h>
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/solver_policy.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#include "solver_policy.h"

#include <stdutils/macros.h>
Expand Down
5 changes: 5 additions & 0 deletions src/picross/src/solver_policy.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*******************************************************************************
* PICROSS SOLVER
*
* Copyright (c) 2010-2023 Pierre DEJOUE
******************************************************************************/
#pragma once

namespace picross
Expand Down
2 changes: 2 additions & 0 deletions src/stdutils/include/stdutils/chrono.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) 2021 Pierre DEJOUE
// This code is distributed under the terms of the MIT License
#pragma once

#include <chrono>
Expand Down
2 changes: 2 additions & 0 deletions src/stdutils/include/stdutils/io.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) 2023 Pierre DEJOUE
// This code is distributed under the terms of the MIT License
#pragma once

#include <algorithm>
Expand Down
2 changes: 2 additions & 0 deletions src/stdutils/include/stdutils/platform.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) 2023 Pierre DEJOUE
// This code is distributed under the terms of the MIT License
#pragma once

#include <ostream>
Expand Down
2 changes: 2 additions & 0 deletions src/stdutils/include/stdutils/span.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) 2023 Pierre DEJOUE
// This code is distributed under the terms of the MIT License
#pragma once

#include <cassert>
Expand Down
2 changes: 2 additions & 0 deletions src/stdutils/include/stdutils/string.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) 2021 Pierre DEJOUE
// This code is distributed under the terms of the MIT License
#pragma once

#include <string>
Expand Down
3 changes: 2 additions & 1 deletion src/stdutils/src/io.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

// Copyright (c) 2023 Pierre DEJOUE
// This code is distributed under the terms of the MIT License
#include <stdutils/io.h>

#include <cassert>
Expand Down
2 changes: 2 additions & 0 deletions src/stdutils/src/platform.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) 2023 Pierre DEJOUE
// This code is distributed under the terms of the MIT License
#include <stdutils/platform.h>

#include <cassert>
Expand Down
2 changes: 2 additions & 0 deletions src/stdutils/src/string.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) 2021 Pierre DEJOUE
// This code is distributed under the terms of the MIT License
#include <stdutils/string.h>

#include <algorithm>
Expand Down

0 comments on commit 4de313f

Please sign in to comment.