summary refs log tree commit diff
path: root/pkgs/applications/science/astronomy/openspace/constexpr.patch
blob: d9fc91d7c2778800061def64dc936860f8e8a39d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
diff --git a/include/openspace/util/distanceconversion.h b/include/openspace/util/distanceconversion.h
index 80a3a96..7059752 100755
--- a/include/openspace/util/distanceconversion.h
+++ b/include/openspace/util/distanceconversion.h
@@ -159,24 +159,34 @@ constexpr const char* nameForDistanceUnit(DistanceUnit unit, bool pluralForm = f
 }
 
 constexpr DistanceUnit distanceUnitFromString(const char* unitName) {
+    int result = -1;
+  
     int i = 0;
     for (const char* val : DistanceUnitNamesSingular) {
         if (ghoul::equal(unitName, val)) {
-            return static_cast<DistanceUnit>(i);
+            result = i;
+            break;
         }
         ++i;
     }
 
-    i = 0;
-    for (const char* val : DistanceUnitNamesPlural) {
-        if (ghoul::equal(unitName, val)) {
-            return static_cast<DistanceUnit>(i);
+    if (result == -1) {
+        i = 0;
+        for (const char* val : DistanceUnitNamesPlural) {
+            if (ghoul::equal(unitName, val)) {
+                result = i;
+                break;
+            }
+            ++i;
         }
-        ++i;
     }
 
-    ghoul_assert(false, "Unit name is not a valid name");
-    throw ghoul::MissingCaseException();
+    if (result != -1)
+        return static_cast<DistanceUnit>(result);
+    else {
+        ghoul_assert(false, "Unit name is not a valid name");
+        throw ghoul::MissingCaseException();
+    }
 }
 
 
diff --git a/include/openspace/util/timeconversion.h b/include/openspace/util/timeconversion.h
index a36c92a..699bca9 100755
--- a/include/openspace/util/timeconversion.h
+++ b/include/openspace/util/timeconversion.h
@@ -142,23 +142,32 @@ constexpr const char* nameForTimeUnit(TimeUnit unit, bool pluralForm = false) {
 }
 
 constexpr TimeUnit timeUnitFromString(const char* unitName) {
+    int result = -1;
+    
     int i = 0;
     for (const char* val : TimeUnitNamesSingular) {
         if (ghoul::equal(unitName, val)) {
-            return static_cast<TimeUnit>(i);
+            result = i;
+            break;
         }
         ++i;
     }
 
-    i = 0;
-    for (const char* val : TimeUnitNamesPlural) {
-        if (ghoul::equal(unitName, val)) {
-            return static_cast<TimeUnit>(i);
+    if (result == -1) {
+        i = 0;
+        for (const char* val : TimeUnitNamesPlural) {
+            if (ghoul::equal(unitName, val)) {
+                result = i;
+                break;
+            }
+            ++i;
         }
-        ++i;
     }
 
-    throw ghoul::MissingCaseException();
+    if (result != -1)
+        return static_cast<TimeUnit>(result);
+    else
+        throw ghoul::MissingCaseException();
 }
 
 std::pair<double, std::string> simplifyTime(double seconds,