Ver Fonte

view: minor changes

Michele Caini há 2 anos atrás
pai
commit
a5e259c19b
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      src/entt/entity/view.hpp

+ 2 - 2
src/entt/entity/view.hpp

@@ -740,7 +740,7 @@ public:
      * otherwise.
      */
     [[nodiscard]] entity_type front() const noexcept {
-        return (!view || view->empty()) ? null : *view->begin();
+        return empty() ? null : *view->begin();
     }
 
     /**
@@ -749,7 +749,7 @@ public:
      * otherwise.
      */
     [[nodiscard]] entity_type back() const noexcept {
-        return (!view || view->empty()) ? null : *view->rbegin();
+        return empty() ? null : *view->rbegin();
     }
 
     /**