Skip to content

Elide single stray parenthesis and comma #5613

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions docs/c-runtime-library/reference/modf-modff-modfl.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "modf, modff, modfl"
description: "API reference for modf, modff, and modfl; which split a floating-point value into fractional and integer parts."
ms.date: "1/15/2021"
ms.date: 1/15/2021
api_name: ["modff", "modf", "modfl", "_o_modf", "_o_modff"]
api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-math-l1-1-0.dll"]
api_type: ["DLLExport"]
Expand Down Expand Up @@ -52,7 +52,7 @@ By default, this function's global state is scoped to the application. To change

| Routine | Required header |
|---|---|
| **`modf`**, **`modff`**, **`modfl`** | C: `<math.h>`<br /><br /> C++: , `<cmath>` or `<math.h>` |
| **`modf`**, **`modff`**, **`modfl`** | C: `<math.h>`<br /><br /> C++: `<cmath>` or `<math.h>` |

For more compatibility information, see [Compatibility](../compatibility.md).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ The articles in this section describe Microsoft C/C++ compiler warning messages
|[Compiler warning (level 1) C4383](compiler-warning-level-1-c4383.md)|'*instance_dereference_operator*': the meaning of dereferencing a handle can change, when a user-defined '*instance_dereference_operator*' operator exists; write the operator as a static function to be explicit about the operand|
|[Compiler warning (level 1) C4384](compiler-warning-level-1-c4384.md)|`#pragma` '*pragma_name*' should only be used at global scope|
|Compiler warning (level 3) C4387|'*alternative*': was considered|
|[Compiler warning (level 4, off) C4388](./c4388.md))|'*expression*': signed/unsigned mismatch|
|[Compiler warning (level 4, off) C4388](./c4388.md)|'*expression*': signed/unsigned mismatch|
|[Compiler warning (level 4) C4389](compiler-warning-level-4-c4389.md)|'*operator*': signed/unsigned mismatch|
|[Compiler warning (level 3) C4390](compiler-warning-level-3-c4390.md)|';': empty controlled statement found; is this the intent?|
|[Compiler warning (level 1) C4391](compiler-warning-level-1-c4391.md)|'*function_signature*': incorrect return type for intrinsic function, expected '*type*'|
Expand Down