Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zemasoft committed May 30, 2018
1 parent 007dd73 commit 7b12eb7
Show file tree
Hide file tree
Showing 5 changed files with 520 additions and 160 deletions.
12 changes: 6 additions & 6 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
Example 1 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/fEPatLfGTxGe3023)
Example 1 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/3k46mbGBB9vAhstC)
=========

Compile time matching only.

Example 2 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/vwBgISrQkgjoV5I8)
Example 2 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/6WkZusYmkIVAYdPT)
=========

Compile time and runtime check of ID's validity using a pattern.

Example 3 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/G55AkM150gnC84nv)
Example 3 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/1UceEthHafGm0Wuy)
=========

Example 2 extended with a default pattern and with a user-defined string
literal.

Example 4 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/naeV9pF2dC6Uey2L)
Example 4 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/7uDM3O7QTEtsGEXO)
=========

Matching of command line arguments.

Example 5 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/q7J6UbuQEsXf1x8L)
Example 5 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/1fZm5aZd245p9ehr)
=========

List files on a given path which match a given pattern.

Example 6 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/b9frVhiZdEnGYWpm)
Example 6 [![Try it online](https://img.shields.io/badge/try%20it-online-blue.svg)](https://wandbox.org/permlink/ZO7t2JnN8mmsYG5E)
=========

Matching of generated DNA sequences.
2 changes: 1 addition & 1 deletion include/cx.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define CX_HPP

#define CX_VERSION_MAJOR 1
#define CX_VERSION_MINOR 2
#define CX_VERSION_MINOR 3
#define CX_VERSION_PATCH 0

#include "cx/algorithm.hpp"
Expand Down
2 changes: 1 addition & 1 deletion include/wildcards.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define WILDCARDS_HPP

#define WILDCARDS_VERSION_MAJOR 1
#define WILDCARDS_VERSION_MINOR 2
#define WILDCARDS_VERSION_MINOR 3
#define WILDCARDS_VERSION_PATCH 0

#include "wildcards/cards.hpp"
Expand Down
10 changes: 5 additions & 5 deletions single_include/cx.hpp
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// THIS FILE HAS BEEN GENERATED AUTOMATICALLY. DO NOT EDIT DIRECTLY.
// Generated: 2018-05-21 13:22:37.151231618
// Generated: 2018-05-30 13:30:06.195150205
// Copyright Tomas Zeman 2018.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef CX_HPP
#define CX_HPP
#define CX_VERSION_MAJOR 1
#define CX_VERSION_MINOR 2
#define CX_VERSION_MINOR 3
#define CX_VERSION_PATCH 0
#ifndef CX_ALGORITHM_HPP
#define CX_ALGORITHM_HPP
Expand Down Expand Up @@ -336,10 +336,10 @@
#else
#define cfg_constexpr14
#endif
#if cfg_HAS_CONSTEXPR14 && !(defined(__GNUC__) && __GNUC__ < 6 && !defined(__clang__))
#define cfg_HAS_FULL_FEATURED_CONSTEXPR_SWITCH 1
#if cfg_HAS_CONSTEXPR14 && !(defined(__GNUC__) && !defined(__clang__))
#define cfg_HAS_FULL_FEATURED_CONSTEXPR14 1
#else
#define cfg_HAS_FULL_FEATURED_CONSTEXPR_SWITCH 0
#define cfg_HAS_FULL_FEATURED_CONSTEXPR14 0
#endif
#endif
namespace cx
Expand Down

0 comments on commit 7b12eb7

Please sign in to comment.