Skip to content

Commit 47a66e1

Browse files
committed
license update
1 parent dcd688a commit 47a66e1

14 files changed

+14
-1
lines changed

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
LGPL3 unless stated otherwise

allocator.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#pragma once
23

34
#include <stdio.h>

base64.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#pragma once
23

34
#include <string>

bitset.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#pragma once
23

34
#include <stdint.h>

bitvector.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#ifndef SWEETHPP_BITVECTOR
23
#define SWEETHPP_BITVECTOR
34

cache.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#pragma once
23

34
#include <algorithm>

compare.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#pragma once
23

34
#include <type_traits>

fap.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#pragma once
23

34
#include <fector.hpp>

fector.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#pragma once
23
#include <cstddef>
34
#include <stdexcept>

getopts.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#pragma once
23

34
#include <string>

semaphore.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// http://stackoverflow.com/questions/4792449/c0x-has-no-semaphores-how-to-synchronize-threads/19659736#19659736
22

33
#include <mutex>
4-
#include <condition_variable>
4+
#include <condition_variable>
55

66
namespace sweet {
77
class Semaphore{

streamhelper.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#pragma once
23

34
#include <fstream>

sysinfo.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#include <cxxabi.h>
23
#include <execinfo.h>
34
#include <fstream>

trie.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// LGPL 3 or higher Robert Burner Schadek [email protected]
12
#ifndef SWEET_TRIE_HPP
23
#define SWEET_TRIE_HPP
34
//#include <unordered_map>

0 commit comments

Comments
 (0)