aboutsummaryrefslogtreecommitdiffstats
path: root/test/double_size.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-05-26 23:43:10 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-05-26 23:43:10 +0100
commit4c16cca26bdae09525c04665b536da98beb4c76f (patch)
tree0a3ba29199ed13aaf34b8e624da08719793d1df4 /test/double_size.cpp
parent89c11e6679346e77ee32eb1343d3cf4e7d429a46 (diff)
downloadYAGE-4c16cca26bdae09525c04665b536da98beb4c76f.tar.gz
YAGE-4c16cca26bdae09525c04665b536da98beb4c76f.zip
Creating matrix
Diffstat (limited to 'test/double_size.cpp')
-rw-r--r--test/double_size.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/double_size.cpp b/test/double_size.cpp
deleted file mode 100644
index 25c7cef7..00000000
--- a/test/double_size.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <iostream>
-
-int main()
-{
- std::cout<<"Size of double: "<<sizeof(double)<<'\n';
- std::cout<<"Size of long double: "<<sizeof(long double)<<'\n';
-
- if(sizeof(long double) > 8)
- return 0;
- return 1;
-}