Skip to content

Commit dd152ad

Browse files
Merge pull request #4749 from Rageking8/make-code-blocks-cpp
Make code blocks cpp
2 parents d5d3ebc + ef9e45d commit dd152ad

8 files changed

+8
-8
lines changed

docs/standard-library/logical-not-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A predefined function object that performs the logical not operation (`operator!
1212

1313
## Syntax
1414

15-
```
15+
```cpp
1616
template <class Type = void>
1717
struct logical_not : public unary_function<Type, bool>
1818
{

docs/standard-library/logical-or-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A predefined function object that performs the logical disjunction operation ( `
1212

1313
## Syntax
1414

15-
```
15+
```cpp
1616
template <class Type = void>
1717
struct logical_or : public binary_function<Type, Type, bool>
1818
{

docs/standard-library/minus-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A predefined function object that performs the subtraction operation (binary `op
1212

1313
## Syntax
1414

15-
```
15+
```cpp
1616
template <class Type = void>
1717
struct minus : public binary_function <Type, Type, Type>
1818
{

docs/standard-library/modulus-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A predefined function object that performs the modulus division operation (`oper
1212

1313
## Syntax
1414

15-
```
15+
```cpp
1616
template <class Type = void>
1717
struct modulus : public binary_function <Type, Type, Type>
1818
{

docs/standard-library/multiplies-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A predefined function object that performs the multiplication operation (binary
1212

1313
## Syntax
1414

15-
```
15+
```cpp
1616
template <class Type = void>
1717
struct multiplies : public binary_function <Type, Type, Type>
1818
{

docs/standard-library/negate-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A predefined function object that performs the arithmetic negation operation (un
1212

1313
## Syntax
1414

15-
```
15+
```cpp
1616
template <class Type = void>
1717
struct negate : public unary_function<Type, Type>
1818
{

docs/standard-library/negative-binomial-distribution-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Generates a negative binomial distribution.
1212

1313
## Syntax
1414

15-
```
15+
```cpp
1616
template<class IntType = int>
1717
class negative_binomial_distribution
1818
{

docs/standard-library/not-equal-to-struct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A binary predicate that performs the inequality operation (`operator!=`) on its
1212

1313
## Syntax
1414

15-
```
15+
```cpp
1616
template <class Type = void>
1717
struct not_equal_to : public binary_function<Type, Type, bool>
1818
{

0 commit comments

Comments
 (0)