Skip to content

Commit b3855d8

Browse files
committed
欠けたコードを修正
commit 1d0cf2b で誤って削除されたようです。
1 parent 98dc272 commit b3855d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/regex/basic_regex/flags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ flag_type flags() const;
2626
#include <iostream>
2727
#include <regex>
2828

29-
#define PRINTFLAG(f, FLAG) (std::cout << #FLAG " is " << (f & std::regex_constants::FLAG ? "set" : "n
29+
#define PRINTFLAG(f, FLAG) (std::cout << #FLAG " is " << (f & std::regex_constants::FLAG ? "set" : "not set") << std::endl)
3030

3131
void print(std::regex_constants::syntax_option_type f)
3232
{

0 commit comments

Comments
 (0)