"...python/git@developer.sourcefind.cn:change/sglang.git" did not exist on "115ae2e728bc2e2cde491155ce3bc4752aac0436"
Commit dbbce825 authored by Davis King's avatar Davis King
Browse files

Fixed a compile time bug.

parent f47e3270
...@@ -317,7 +317,7 @@ namespace dlib ...@@ -317,7 +317,7 @@ namespace dlib
{ {
public: public:
sstack() {} sstack() {}
explicit sstack(const T& item_) : item(item_) {} sstack(const T& item_) : item(item_) {}
const T& top() const { return item; } const T& top() const { return item; }
T& top() { return item; } T& top() { return item; }
......
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