Commit 4bafde33 authored by peastman's avatar peastman
Browse files

Merge pull request #1291 from peastman/platformdoc

Minor changes to doxygen comments
parents 3a1936fd 0af10b15
......@@ -53,7 +53,7 @@ class KernelFactory;
* To get a Platform object, call
*
* <pre>
* Platform& platform Platform::findPlatform(kernelNames);
* Platform& platform = Platform::findPlatform(kernelNames);
* </pre>
*
* passing in the names of all kernels that will be required for the calculation you plan to perform. It
......@@ -78,6 +78,9 @@ public:
/**
* Get whether this Platform supports double precision arithmetic. If this returns false, the platform
* is permitted to represent double precision values internally as single precision.
*
* @deprecated This method is not well defined, and is too simplistic to describe the actual behavior of
* some Platforms, such as ones that offer multiple precision modes. It will be removed in a future release.
*/
virtual bool supportsDoublePrecision() const = 0;
/**
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment