Skip to content

Fill in empty table headers #5437

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 2 commits into from
Jun 18, 2025
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
10 changes: 5 additions & 5 deletions docs/atl/atl-utilities-reference.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: "ATL utilities reference"
description: "Learn more about: ATL utilities reference"
ms.date: "11/04/2016"
ms.date: 11/04/2016
---
# ATL utilities reference

ATL provides code for manipulating paths and URLs in the form of [CPathT](../atl/reference/cpatht-class.md) and [CUrl](../atl/reference/curl-class.md). A thread pool, [CThreadPool](../atl/reference/cthreadpool-class.md), can be used in your applications. This code can be found in atlpath.h and atlutil.h.

## Classes

|   |   |
| Name | Description |
|--|--|
| [CPathT class](../atl/reference/cpatht-class.md) | This class represents a path. |
| [CDebugReportHook class](../atl/reference/cdebugreporthook-class.md) | Use this class to send debug reports to a named pipe. |
Expand All @@ -21,7 +21,7 @@ ATL provides code for manipulating paths and URLs in the form of [CPathT](../atl

## Typedefs

|   |   |
| Name | Description |
|--|--|
| [CPath](../atl/reference/atl-typedefs.md#cpath) | A specialization of [CPathT](../atl/reference/cpatht-class.md) using `CString`. |
| [CPathA](../atl/reference/atl-typedefs.md#cpatha) | A specialization of [CPathT](../atl/reference/cpatht-class.md) using `CStringA`. |
Expand All @@ -30,13 +30,13 @@ ATL provides code for manipulating paths and URLs in the form of [CPathT](../atl

## Enums

|   |   |
| Name | Description |
|--|--|
| [ATL_URL_SCHEME](../atl/reference/atl-url-scheme-enum.md) | The members of this enumeration provide constants for the schemes understood by [CUrl](../atl/reference/curl-class.md). |

## Functions

|   |   |
| Name | Description |
|--|--|
| [AtlCanonicalizeUrl](../atl/reference/atl-http-utility-functions.md#atlcanonicalizeurl) | Call this function to canonicalize a URL, which includes converting unsafe characters and spaces into escape sequences. |
| [AtlCombineUrl](../atl/reference/atl-http-utility-functions.md#atlcombineurl) | Call this function to combine a base URL and a relative URL into a single, canonical URL. |
Expand Down
4 changes: 2 additions & 2 deletions docs/standard-library/any-functions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: "Learn more about the free functions for use with the std::any class in the C++ Standard Library."
title: "<any> functions"
description: "Learn more about the free functions for use with the std::any class in the C++ Standard Library."
ms.date: 09/20/2021
f1_keywords: ["any/std::any_cast", "any/std::make_any", "any/std::swap"]
no-loc: ["any", "std", "class"]
Expand All @@ -11,7 +11,7 @@ The [`<any>`](any.md) header declares several free functions for working with th

## Functions

| &nbsp; | &nbsp; |
| Name | Description |
|--|--|
| [`any_cast`](#any_cast) | Makes an object into an `any`. |
| [`make_any`](#make_any) | Takes values and creates an `any` object. |
Expand Down