Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 98b7de2

Browse files
author
Aaron Leung
committed
removing some junk
1 parent c026438 commit 98b7de2

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

functions.cpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,6 @@ namespace Sass {
6666
throw Error(Error::evaluation, path, line, message);
6767
}
6868

69-
extern Signature foo_sig = "foo($x, $y, $z: \"hey\")";
70-
Node foo(const Node parameter_names, Environment& bindings, Node_Factory& new_Node) {
71-
Node arg1(bindings[parameter_names[0].token()]);
72-
Node arg2(bindings[parameter_names[1].token()]);
73-
Node arg3(bindings[parameter_names[2].token()]);
74-
75-
Node cat(new_Node(Node::concatenation, arg1.path(), arg1.line(), 3));
76-
cat << arg3 << arg2 << arg1;
77-
return cat;
78-
}
79-
8069
// RGB Functions ///////////////////////////////////////////////////////
8170

8271
extern Signature rgb_sig = "rgb($red, $green, $blue)";

functions.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ namespace Sass {
5858

5959
namespace Functions {
6060

61-
extern const char foo_sig[];
62-
Node foo(const Node parameters, Environment& bindings, Node_Factory& new_Node);
63-
6461
// RGB Functions ///////////////////////////////////////////////////////
6562

6663
extern Signature rgb_sig;

0 commit comments

Comments
 (0)