Skip to content

Commit 8e22fff

Browse files
committed
[clang] Remove trailing whitespace
Fix commit 66f6929
1 parent 8a5aa10 commit 8e22fff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/docs/HLSL/ExpectedDifferences.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ behavior between Clang and DXC. Some examples include:
9393
fma(X, Y, Z); // DXC: Fails to resolve no known conversion from float to double.
9494
// Clang: Resolves to fma(double,double,double).
9595
#endif
96-
96+
9797
double D = dot(A, B); // DXC: Resolves to dot(double3, double3), fails DXIL Validation.
9898
// FXC: Expands to compute double dot product with fmul/fadd
9999
// Clang: Resolves to dot(float3, float3), emits conversion warnings.
@@ -102,7 +102,7 @@ behavior between Clang and DXC. Some examples include:
102102

103103
.. note::
104104

105-
In Clang, a conscious decision was made to exclude the ``dot(vector<double,N>, vector<double,N>)``
105+
In Clang, a conscious decision was made to exclude the ``dot(vector<double,N>, vector<double,N>)``
106106
overload and allow overload resolution to resolve the
107107
``vector<float,N>`` overload. This approach provides ``-Wconversion``
108108
diagnostic notifying the user of the conversion rather than silently altering

0 commit comments

Comments
 (0)