Skip to content

Commit c467802

Browse files
committed
1 parent bf96c23 commit c467802

11 files changed

+11
-11
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The MIT License (MIT)
22

33
cpp-pattern-matching - ML-style pattern matching in C++. (https://github.com/mutouyun/cpp-pattern-matching)
4-
Copyright (c) 2015, mutouyun (http://darkc.at). All rights reserved.
4+
Copyright (c) 2015, mutouyun (http://orzz.org). All rights reserved.
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

capo/preprocessor.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Capo Library
33
Code covered by the MIT License
44
5-
Author: mutouyun (http://darkc.at)
5+
Author: mutouyun (http://orzz.org)
66
*/
77

88
#pragma once

capo/preprocessor/pp_arg.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Capo Library
33
Code covered by the MIT License
44
5-
Author: mutouyun (http://darkc.at)
5+
Author: mutouyun (http://orzz.org)
66
*/
77

88
#pragma once

capo/preprocessor/pp_count.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Capo Library
33
Code covered by the MIT License
44
5-
Author: mutouyun (http://darkc.at)
5+
Author: mutouyun (http://orzz.org)
66
*/
77

88
#pragma once

capo/preprocessor/pp_functions.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Capo Library
33
Code covered by the MIT License
44
5-
Author: mutouyun (http://darkc.at)
5+
Author: mutouyun (http://orzz.org)
66
*/
77

88
#pragma once

capo/preprocessor/pp_macros.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Capo Library
33
Code covered by the MIT License
44
5-
Author: mutouyun (http://darkc.at)
5+
Author: mutouyun (http://orzz.org)
66
*/
77

88
#pragma once

capo/preprocessor/pp_mult.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Capo Library
33
Code covered by the MIT License
44
5-
Author: mutouyun (http://darkc.at)
5+
Author: mutouyun (http://orzz.org)
66
*/
77

88
#pragma once

capo/preprocessor/pp_nest.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Capo Library
33
Code covered by the MIT License
44
5-
Author: mutouyun (http://darkc.at)
5+
Author: mutouyun (http://orzz.org)
66
*/
77

88
#pragma once

capo/preprocessor/pp_repeat.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The Capo Library
33
Code covered by the MIT License
44
5-
Author: mutouyun (http://darkc.at)
5+
Author: mutouyun (http://orzz.org)
66
*/
77

88
#pragma once

main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void test_regex(void)
6464
TEST_CASE_();
6565

6666
std::string str = "\\w+(\\.\\w+)*@\\w+(\\.\\w+)+";
67-
Match("memleak@darkc.at")
67+
Match("memleak@orzz.org")
6868
{
6969
Case("Hello World") std::cout << 1 << std::endl;
7070
Case("I Love You") std::cout << 2 << std::endl;

match.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
cpp-pattern-matching - Code covered by the MIT License
3-
Author: mutouyun (http://darkc.at)
3+
Author: mutouyun (http://orzz.org)
44
*/
55

66
#pragma once

0 commit comments

Comments
 (0)