Skip to content

Commit a7a8a91

Browse files
authored
Merge pull request MicrosoftDocs#1526 from mikeblome/mb-safeint
Updates for safeint library github location
2 parents 001dc26 + 5b87cb4 commit a7a8a91

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

docs/windows/safeint-class.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "SafeInt Class | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "09/27/2018"
4+
ms.date: "10/22/2018"
55
ms.technology: ["cpp-windows"]
66
ms.topic: "reference"
77
f1_keywords: ["SafeInt", "SafeInt::SafeInt", "SafeInt.SafeInt"]
@@ -16,6 +16,9 @@ ms.workload: ["cplusplus", "uwp"]
1616

1717
Extends the integer primitives to help prevent integer overflow and lets you compare different types of integers.
1818

19+
> [!NOTE]
20+
> The latest version of this library is located at [https://github.com/dcleblanc/SafeInt](https://github.com/dcleblanc/SafeInt).
21+
1922
## Syntax
2023

2124
```cpp

docs/windows/safeint-functions.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "SafeInt Functions | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "09/28/2018"
4+
ms.date: "10/22/2018"
55
ms.technology: ["cpp-windows"]
66
ms.topic: "reference"
77
f1_keywords: ["SafeInt functions", "SafeAdd", "SafeCast", "SafeDivide", "SafeEquals", "SafeGreaterThan", "SafeGreaterThanEquals", "SafeLessThan", "SafeLessThanEquals", "SafeModulus", "SafeMultiply", "SafeNotEquals", "SafeSubtract"]
@@ -20,6 +20,9 @@ These functions enable you to compare or perform mathematical operations on two
2020

2121
Each of these functions has two template types: `T` and `U`. Each of these types can be a Boolean, character, or integral type. Integral types can be signed or unsigned and any size from 8 bits to 64 bits.
2222

23+
> [!NOTE]
24+
> The latest version of this library is located at [https://github.com/dcleblanc/SafeInt](https://github.com/dcleblanc/SafeInt).
25+
2326
## In This Section
2427

2528
Function | Description

docs/windows/safeint-library.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "SafeInt Library | Microsoft Docs"
33
ms.custom: "index-page"
4-
ms.date: "11/04/2016"
4+
ms.date: "10/22/2018"
55
ms.technology: ["cpp-windows"]
66
ms.topic: "conceptual"
77
f1_keywords: ["SafeInt"]
@@ -14,7 +14,7 @@ ms.workload: ["cplusplus", "uwp"]
1414
---
1515
# SafeInt Library
1616

17-
The **SafeInt** library helps prevent integer overflows that might result when the application performs mathematical operations.
17+
The **SafeInt** library helps prevent integer overflows that might result when the application performs mathematical operations. The latest version of this library is located at [https://github.com/dcleblanc/SafeInt](https://github.com/dcleblanc/SafeInt).
1818

1919
## In This Section
2020

docs/windows/safeintexception-class.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "SafeIntException Class | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "09/27/2018"
4+
ms.date: "10/22/2018"
55
ms.technology: ["cpp-windows"]
66
ms.topic: "reference"
77
f1_keywords: ["SafeIntException Class", "SafeIntException", "SafeIntException.SafeIntException", "SafeIntException::SafeIntException"]
@@ -16,6 +16,9 @@ ms.workload: ["cplusplus", "uwp"]
1616

1717
The `SafeInt` class uses `SafeIntException` to identify why a mathematical operation cannot be completed.
1818

19+
> [!NOTE]
20+
> The latest version of this library is located at [https://github.com/dcleblanc/SafeInt](https://github.com/dcleblanc/SafeInt).
21+
1922
## Syntax
2023

2124
```cpp

0 commit comments

Comments
 (0)