Skip to content

Commit 8d8c23a

Browse files
authored
Merge pull request #5539 from Rageking8/adjust-some-semicolon-placements
Adjust some semicolon placements
2 parents 82d1abf + 1182285 commit 8d8c23a

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

docs/c-runtime-library/reference/ctime-s-ctime32-s-ctime64-s-wctime-s-wctime32-s-wctime64-s.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
---
2-
description: "Learn more about: ctime_s, _ctime32_s, _ctime64_s, _wctime_s, _wctime32_s, _wctime64_s"
32
title: "ctime_s, _ctime32_s, _ctime64_s, _wctime_s, _wctime32_s, _wctime64_s"
4-
ms.date: "4/2/2020"
3+
description: "Learn more about: ctime_s, _ctime32_s, _ctime64_s, _wctime_s, _wctime32_s, _wctime64_s"
4+
ms.date: 4/2/2020
55
api_name: ["_ctime64_s", "_wctime32_s", "ctime_s", "_wctime64_s", "_ctime32_s", "_wctime_s", "_o__ctime32_s", "_o__ctime64_s", "_o__wctime32_s", "_o__wctime64_s"]
66
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-time-l1-1-0.dll"]
77
api_type: ["DLLExport"]
88
topic_type: ["apiref"]
99
f1_keywords: ["ctime64_s", "_ctime32_s", "_tctime32_s", "_ctime64_s", "_wctime_s", "_tctime_s", "_tctime64_s", "ctime_s", "ctime32_s"]
1010
helpviewer_keywords: ["_wctime32_s function", "ctime64_s function", "_tctime64_s function", "_wctime_s function", "tctime_s function", "_wctime64_s function", "ctime_s function", "ctime32_s function", "_ctime64_s function", "tctime64_s function", "wctime64_s function", "wctime_s function", "_tctime_s function", "tctime32_s function", "wctime32_s function", "time, converting", "_ctime32_s function", "_tctime32_s function"]
11-
ms.assetid: 36ac419a-8000-4389-9fd8-d78b747a009b
1211
---
1312
# `ctime_s`, `_ctime32_s`, `_ctime64_s`, `_wctime_s`, `_wctime32_s`, `_wctime64_s`
1413

@@ -30,8 +29,8 @@ errno_t _ctime32_s(
3029
errno_t _ctime64_s(
3130
char* buffer,
3231
size_t numberOfElements,
33-
const __time64_t *sourceTime )
34-
;
32+
const __time64_t *sourceTime
33+
);
3534
errno_t _wctime_s(
3635
wchar_t* buffer,
3736
size_t numberOfElements,

docs/mfc/codesnippet/CPP/activex-control-containers-using-controls-in-a-non-dialog-container_3.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ CCirc m_myCtl;
33

44
public:
55
afx_msg void OnViewCircdlg();
6-
}
7-
;
6+
};

docs/standard-library/auto-ptr-class.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ For more information about `throw()` and exception handling, see [Exception Spec
2020
class auto_ptr {
2121
typedef Type element_type;
2222
explicit auto_ptr(Type* ptr = 0) throw();
23-
auto_ptr(auto_ptr<Type>& right) throw()
24-
;
23+
auto_ptr(auto_ptr<Type>& right) throw();
2524
template <class Other>
2625
operator auto_ptr<Other>() throw();
2726
template <class Other>

0 commit comments

Comments
 (0)