Skip to content

Make code blocks cpp #4749

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/standard-library/logical-not-struct.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A predefined function object that performs the logical not operation (`operator!

## Syntax

```
```cpp
template <class Type = void>
struct logical_not : public unary_function<Type, bool>
{
Expand Down
2 changes: 1 addition & 1 deletion docs/standard-library/logical-or-struct.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A predefined function object that performs the logical disjunction operation ( `

## Syntax

```
```cpp
template <class Type = void>
struct logical_or : public binary_function<Type, Type, bool>
{
Expand Down
2 changes: 1 addition & 1 deletion docs/standard-library/minus-struct.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A predefined function object that performs the subtraction operation (binary `op

## Syntax

```
```cpp
template <class Type = void>
struct minus : public binary_function <Type, Type, Type>
{
Expand Down
2 changes: 1 addition & 1 deletion docs/standard-library/modulus-struct.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A predefined function object that performs the modulus division operation (`oper

## Syntax

```
```cpp
template <class Type = void>
struct modulus : public binary_function <Type, Type, Type>
{
Expand Down
2 changes: 1 addition & 1 deletion docs/standard-library/multiplies-struct.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A predefined function object that performs the multiplication operation (binary

## Syntax

```
```cpp
template <class Type = void>
struct multiplies : public binary_function <Type, Type, Type>
{
Expand Down
2 changes: 1 addition & 1 deletion docs/standard-library/negate-struct.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A predefined function object that performs the arithmetic negation operation (un

## Syntax

```
```cpp
template <class Type = void>
struct negate : public unary_function<Type, Type>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Generates a negative binomial distribution.

## Syntax

```
```cpp
template<class IntType = int>
class negative_binomial_distribution
{
Expand Down
2 changes: 1 addition & 1 deletion docs/standard-library/not-equal-to-struct.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A binary predicate that performs the inequality operation (`operator!=`) on its

## Syntax

```
```cpp
template <class Type = void>
struct not_equal_to : public binary_function<Type, Type, bool>
{
Expand Down