Skip to content

Commit 9bd2af9

Browse files
authored
Resolve invalid type Int in syntax references
1 parent d54db33 commit 9bd2af9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/cpp/com-ptr-t-relational-operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bool operator==( const _com_ptr_t& p ) throw();
3333
template<>
3434
bool operator==( _com_ptr_t& p ) throw();
3535
36-
bool operator==( Int null );
36+
bool operator==( int null );
3737
3838
template<typename _OtherIID>
3939
bool operator!=( const _com_ptr_t<_OtherIID>& p );
@@ -44,7 +44,7 @@ bool operator!=( _com_ptr_t<_OtherIID>& p );
4444
template<typename _InterfaceType>
4545
bool operator!=( _InterfaceType* p );
4646
47-
bool operator!=( Int null );
47+
bool operator!=( int null );
4848
4949
template<typename _OtherIID>
5050
bool operator<( const _com_ptr_t<_OtherIID>& p );

docs/mfc/reference/cmfcribboncombobox-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ public:
102102
CMFCRibbonComboBox(
103103
UINT nID,
104104
BOOL bHasEditBox=TRUE,
105-
Int nWidth=-1,
105+
int nWidth=-1,
106106
LPCTSTR lpszLabel=NULL,
107-
Int nImage=-1);
107+
int nImage=-1);
108108

109109
protected:
110110
CMFCRibbonComboBox();

0 commit comments

Comments
 (0)