Skip to content

Commit 48b34df

Browse files
authored
Adjust some semicolon placements
1 parent df4242d commit 48b34df

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ errno_t _ctime32_s(
3030
errno_t _ctime64_s(
3131
char* buffer,
3232
size_t numberOfElements,
33-
const __time64_t *sourceTime )
34-
;
33+
const __time64_t *sourceTime
34+
);
3535
errno_t _wctime_s(
3636
wchar_t* buffer,
3737
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)